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

52 lines
1.7 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-02-16 16:12:30 +01:00
"tests-coverage": "build/composer-update.sh && XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover clover.xml",
2022-02-03 21:56:47 +01:00
"cs-check": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --dry-run --verbose --allow-risky=yes",
"cs-fix": "build/composer-update.sh && vendor/bin/php-cs-fixer fix --verbose --allow-risky=yes",
2024-11-23 13:30:02 +01:00
"phpstan": "build/composer-update.sh && vendor/bin/phpstan --memory-limit=-1 analyse",
2023-05-04 11:56:37 +02:00
"performance-tests": "php -d xdebug.mode=off -d opcache.enable_cli=1 -d opcache.jit_buffer_size=100M 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": {
2024-11-19 14:33:05 +01:00
"php": "7.2 - 8.4"
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",
2024-11-23 11:31:17 +01:00
"phpstan/phpstan": "^1.10",
2021-11-23 12:42:13 +01:00
"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-03-02 23:04:52 +01:00
"psr-4": {"JsonMachine\\": "src/"},
2024-11-22 19:26:04 +01:00
"exclude-from-classmap": ["src/autoloader.php"],
"files": ["src/functions.php"]
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
}