30 lines
617 B
JSON
30 lines
617 B
JSON
{
|
|
"autoload": {
|
|
"files": [
|
|
"src/constants.php",
|
|
"src/functions.php"
|
|
],
|
|
"psr-4": {
|
|
"Aviat\\Kilo\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Aviat\\Kilo\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"ext-json": "*",
|
|
"phpunit/phpunit": "^8",
|
|
"spatie/phpunit-snapshot-assertions": "^2.2.0"
|
|
},
|
|
"scripts": {
|
|
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c phpunit.xml tests",
|
|
"test": "vendor/bin/phpunit -c phpunit.xml --no-coverage tests",
|
|
"test-update": "vendor/bin/phpunit -c phpunit.xml --no-coverage -d --update-snapshots tests"
|
|
},
|
|
"require": {
|
|
"ext-ffi": "*"
|
|
}
|
|
}
|