php-kilo/composer.json

34 lines
759 B
JSON
Raw Normal View History

2019-11-08 16:27:08 -05:00
{
"autoload": {
"files": [
"src/constants.php",
"src/functions.php"
],
"psr-4": {
"Aviat\\Kilo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aviat\\Kilo\\Tests\\": "tests/"
}
},
"require-dev": {
2019-11-20 16:02:35 -05:00
"ext-json": "*",
2020-12-04 11:18:21 -05:00
"phpunit/phpunit": "^9.5.0",
2021-03-03 13:14:44 -05:00
"phpstan/phpstan": "^0.12.19",
"rector/rector": "^0.10.9",
2020-12-04 11:18:21 -05:00
"spatie/phpunit-snapshot-assertions": "^4.2.0"
2019-11-08 16:27:08 -05:00
},
"scripts": {
2019-11-19 17:01:45 -05:00
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c phpunit.xml tests",
2021-03-03 13:14:44 -05:00
"phpstan": "phpstan analyse -c phpstan.neon",
2019-11-20 15:03:48 -05:00
"test": "vendor/bin/phpunit -c phpunit.xml --no-coverage tests",
"test-update": "vendor/bin/phpunit -c phpunit.xml --no-coverage -d --update-snapshots tests"
2019-11-08 16:27:08 -05:00
},
"require": {
2021-03-03 11:50:29 -05:00
"ext-ffi": "*",
"php": ">= 7.4.0"
2019-11-08 16:27:08 -05:00
}
}