1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-02-24 16:12:25 +01:00
json-machine/composer.json

29 lines
674 B
JSON

{
"name": "halaxa/json-machine",
"description": "Fast, efficient and easy-to-use JSON stream parser developed for unpredictably long JSON streams or documents.",
"license": "Apache-2.0",
"authors": [
{
"name": "Filip Halaxa",
"email": "filip@halaxa.cz"
}
],
"config": {
"platform": {
"php": "5.6"
}
},
"require": {
"php": ">=5.6",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"guzzlehttp/guzzle": "^6"
},
"autoload" : {
"psr-4": {"JsonMachine\\": "src/"},
"files": ["src/functions.php"]
}
}