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"
|
|
|
|
}
|
|
|
|
],
|
2021-11-23 12:42:13 +01:00
|
|
|
"scripts": {
|
|
|
|
"tests": "build/composer-update.sh && vendor/bin/phpunit",
|
2022-01-24 16:41:31 +01:00
|
|
|
"cs-check": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --dry-run --verbose",
|
2021-11-23 12:42:13 +01:00
|
|
|
"cs-fix": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --verbose",
|
2021-12-14 15:25:21 +01:00
|
|
|
"performance-tests": "php -n test/performance/testPerformance.php"
|
2021-11-23 12:42:13 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"lock": false,
|
|
|
|
"sort-packages": true
|
|
|
|
},
|
2015-10-06 18:02:03 +02:00
|
|
|
"require": {
|
2021-12-23 13:21:45 +01:00
|
|
|
"php": ">=7.0"
|
2015-10-06 18:02:03 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2021-11-16 16:08:48 +01:00
|
|
|
"ext-json": "*",
|
2021-11-23 12:42:13 +01:00
|
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
|
|
"phpunit/phpunit": "^8.0"
|
2015-10-06 18:02:03 +02:00
|
|
|
},
|
2020-11-11 12:39:29 +01:00
|
|
|
"suggest": {
|
2021-11-09 12:07:58 +01:00
|
|
|
"ext-json": "To run JSON Machine out of the box without custom decoders.",
|
2021-11-16 16:08:48 +01:00
|
|
|
"guzzlehttp/guzzle": "To run example with GuzzleHttp"
|
2020-11-11 12:39:29 +01:00
|
|
|
},
|
2021-12-05 10:33:44 +01:00
|
|
|
"autoload": {
|
2022-01-08 15:09:45 +01:00
|
|
|
"psr-4": {"JsonMachine\\": "src/"}
|
2020-12-06 20:10:17 +01:00
|
|
|
},
|
2021-12-05 10:33:44 +01:00
|
|
|
"autoload-dev": {
|
2020-12-06 21:40:09 +01:00
|
|
|
"psr-4": {"JsonMachineTest\\": "test/JsonMachineTest"}
|
2021-12-24 17:21:57 +01:00
|
|
|
},
|
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "other",
|
|
|
|
"url": "https://ko-fi.com/G2G57KTE4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2015-10-06 18:02:03 +02:00
|
|
|
}
|