1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-01-17 04:58:16 +01:00
json-machine/composer.json
2021-12-14 15:25:21 +01:00

41 lines
1.2 KiB
JSON

{
"name": "halaxa/json-machine",
"description": "Efficient, easy-to-use and fast JSON pull parser",
"license": "Apache-2.0",
"authors": [
{
"name": "Filip Halaxa",
"email": "filip@halaxa.cz"
}
],
"scripts": {
"tests": "build/composer-update.sh && vendor/bin/phpunit",
"cs": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --dry-run --verbose",
"cs-fix": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --verbose",
"performance-tests": "php -n test/performance/testPerformance.php"
},
"config": {
"lock": false,
"sort-packages": true
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^8.0"
},
"suggest": {
"ext-json": "To run JSON Machine out of the box without custom decoders.",
"guzzlehttp/guzzle": "To run example with GuzzleHttp"
},
"autoload": {
"psr-4": {"JsonMachine\\": "src/"},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {"JsonMachineTest\\": "test/JsonMachineTest"}
}
}