2015-10-06 18:02:03 +02:00
|
|
|
{
|
2018-11-29 11:41:26 +01:00
|
|
|
"name": "halaxa/json-machine",
|
2019-12-20 15:49:04 +01:00
|
|
|
"description": "Efficient, easy-to-use and fast JSON pull parser",
|
2018-11-29 20:24:49 +01:00
|
|
|
"license": "Apache-2.0",
|
2018-11-29 13:53:38 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Filip Halaxa",
|
|
|
|
"email": "filip@halaxa.cz"
|
|
|
|
}
|
|
|
|
],
|
2015-10-06 18:02:03 +02:00
|
|
|
"require": {
|
2020-12-04 21:03:41 +01:00
|
|
|
"php": ">=5.6"
|
2015-10-06 18:02:03 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-12-04 21:03:41 +01:00
|
|
|
"phpunit/phpunit": "^5.7.27",
|
2020-04-16 21:54:19 +02:00
|
|
|
"guzzlehttp/guzzle": "^6",
|
|
|
|
"ext-json": "*"
|
2015-10-06 18:02:03 +02:00
|
|
|
},
|
2020-11-11 12:39:29 +01:00
|
|
|
"suggest": {
|
|
|
|
"ext-json": "To run JSON Machine out of the box without custom decoders."
|
|
|
|
},
|
2015-10-06 18:02:03 +02:00
|
|
|
"autoload" : {
|
2019-10-15 12:21:03 +02:00
|
|
|
"psr-4": {"JsonMachine\\": "src/"},
|
|
|
|
"files": ["src/functions.php"]
|
2020-12-06 20:10:17 +01:00
|
|
|
},
|
|
|
|
"autoload-dev" : {
|
|
|
|
"psr-0": {"JsonMachineTest\\": "test/JsonMachineTest/"}
|
2015-10-06 18:02:03 +02:00
|
|
|
}
|
|
|
|
}
|