-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.62 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
{
"name": "phalcon/traits",
"description": "Phalcon Framework Traits",
"keywords": [
"php",
"framework",
"traits"
],
"license": "MIT",
"require": {
"php": ">=8.0 <9.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"suggest": {
"ext-yaml": "*",
"ext-gettext": "*"
},
"autoload": {
"psr-4": {
"Phalcon\\Traits\\": "src/",
"Phalcon\\Tests\\Fixtures\\": "tests/support/fixtures/",
"Phalcon\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"pds/skeleton": "^1.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.7",
"vlucas/phpdotenv": "^5.5"
},
"scripts": {
"analyze": "vendor/bin/phpstan analyse -c config/phpstan.neon",
"cs": "vendor/bin/phpcs --standard=./config/phpcs.xml",
"cs-fix": "vendor/bin/phpcbf --standard=./config/phpcs.xml",
"test-unit": "vendor/bin/phpunit -c ./config/phpunit.xml.dist",
"test-unit-coverage": "vendor/bin/phpunit -c ./config/phpunit.xml.dist --coverage-clover tests/_output/coverage.xml",
"test-unit-coverage-html": "vendor/bin/phpunit -c ./config/phpunit.xml.dist --coverage-html tests/_output/coverage/"
}
}