-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.37 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "elecena/nano",
"description": "A legacy PHP framework for elecena.pl",
"minimum-stability": "stable",
"authors": [
{
"name": "Maciej Brencz",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-mysqli": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"ext-zlib": "*",
"predis/predis": "^2.0",
"monolog/monolog": "^3.3.1",
"macbre/monolog-utils": "^3.0.0",
"tedivm/jshrink": "^1.2"
},
"autoload": {
"classmap": ["classes/", "classes/utils/", "tests/app/classes/", "tests/"],
"psr-4": {
"Nano\\AppTests\\": "tests/app/tests"
}
},
"autoload-dev": {
"classmap": [ "tests/" ]
},
"scripts": {
"test": [
"phpunit --testdox"
],
"coverage": [
"XDEBUG_MODE=coverage phpunit --coverage-html=.coverage --coverage-clover=.coverage.xml --coverage-text"
],
"lint": [
"php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --verbose",
"phpstan --memory-limit=256M analyse app/ classes/ tests/"
],
"format": [
"php-cs-fixer fix --config=.php-cs-fixer.php"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"psr/cache": "^3.0.0",
"phpstan/phpstan": "^2.0.3",
"phpunit/phpunit": "11.5.2"
}
}