json-parser/composer.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2022-09-16 07:17:51 +10:00
{
2022-09-15 23:37:30 +02:00
"name": "cerbero/json-parser",
2022-09-16 07:17:51 +10:00
"type": "library",
2022-11-11 17:03:29 +10:00
"description": "Zero-dependencies pull parser to read large JSON from any source in a memory-efficient way.",
2022-09-16 07:17:51 +10:00
"keywords": [
2022-09-15 23:37:30 +02:00
"json",
"parser",
2022-11-11 17:03:29 +10:00
"json-parser",
"lexer",
"memory"
2022-09-16 07:17:51 +10:00
],
2022-09-15 23:37:30 +02:00
"homepage": "https://github.com/cerbero90/json-parser",
2022-09-16 07:17:51 +10:00
"license": "MIT",
"authors": [{
"name": "Andrea Marco Sartori",
"email": "andrea.marco.sartori@gmail.com",
"homepage": "https://github.com/cerbero90",
"role": "Developer"
}],
"require": {
2022-09-15 23:37:30 +02:00
"php": "^8.0"
2022-09-16 07:17:51 +10:00
},
"require-dev": {
2022-10-29 17:01:42 +10:00
"guzzlehttp/guzzle": "^7.2",
"illuminate/http": ">=6.20",
2023-01-18 23:59:08 +10:00
"pestphp/pest": "^2.0",
2022-12-29 21:32:35 +10:00
"phpstan/phpstan": "^1.9",
2022-09-16 07:17:51 +10:00
"scrutinizer/ocular": "^1.8",
"squizlabs/php_codesniffer": "^3.0"
},
2023-01-18 23:59:08 +10:00
"minimum-stability": "dev",
"prefer-stable": true,
2022-10-29 17:01:42 +10:00
"suggest": {
"guzzlehttp/guzzle": "Required to load JSON from endpoints (^7.2)."
},
2022-09-16 07:17:51 +10:00
"autoload": {
"psr-4": {
2022-09-15 23:37:30 +02:00
"Cerbero\\JsonParser\\": "src"
2022-09-17 05:02:54 +02:00
},
"files": [
"helpers.php"
]
2022-09-16 07:17:51 +10:00
},
2022-10-29 18:27:43 +10:00
"autoload-dev": {
"psr-4": {
"Cerbero\\JsonParser\\": "tests"
}
},
2022-09-16 07:17:51 +10:00
"scripts": {
"test": "pest",
2023-01-11 15:58:27 +10:00
"static": "phpstan analyze",
2022-09-16 07:17:51 +10:00
"check-style": "phpcs --standard=PSR12 src",
"fix-style": "phpcbf --standard=PSR12 src"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}