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

47 lines
1.3 KiB
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"
}
],
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": {
"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": {
"ext-json": "To run JSON Machine out of the box without custom decoders.",
"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": {
"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
}