php-kilo/composer.json

30 lines
617 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": "*",
"phpunit/phpunit": "^8",
2019-11-20 15:03:48 -05:00
"spatie/phpunit-snapshot-assertions": "^2.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",
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": {
"ext-ffi": "*"
}
}