1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-01-17 13:08:16 +01:00
json-machine/composer.json

31 lines
779 B
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"
}
],
"lock": false,
"require": {
"php": ">=5.6"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8"
},
"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"}
}
}