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

30 lines
738 B
JSON
Raw Normal View History

2015-10-06 18:02:03 +02:00
{
2018-11-29 11:41:26 +01:00
"name": "halaxa/json-machine",
"description": "Efficient, easy-to-use and fast JSON pull parser",
2018-11-29 20:24:49 +01:00
"license": "Apache-2.0",
"authors": [
{
"name": "Filip Halaxa",
"email": "filip@halaxa.cz"
}
],
2015-10-06 18:02:03 +02:00
"require": {
"php": ">=5.6"
2015-10-06 18:02:03 +02:00
},
"require-dev": {
"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" : {
"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
}
}