json-parser/composer.json
Andrea Marco Sartori d01bdf7fa1 Upgrade PHP version
2023-06-14 21:21:17 +02:00

66 lines
1.6 KiB
JSON

{
"name": "cerbero/json-parser",
"type": "library",
"description": "Zero-dependencies pull parser to read large JSON from any source in a memory-efficient way.",
"keywords": [
"json",
"parser",
"json-parser",
"lexer",
"memory"
],
"homepage": "https://github.com/cerbero90/json-parser",
"license": "MIT",
"authors": [{
"name": "Andrea Marco Sartori",
"email": "andrea.marco.sartori@gmail.com",
"homepage": "https://github.com/cerbero90",
"role": "Developer"
}],
"require": {
"php": "^8.1"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"illuminate/http": ">=6.20",
"mockery/mockery": "^1.5",
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.9",
"scrutinizer/ocular": "^1.8",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"guzzlehttp/guzzle": "Required to load JSON from endpoints (^7.2)."
},
"autoload": {
"psr-4": {
"Cerbero\\JsonParser\\": "src"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Cerbero\\JsonParser\\": "tests"
}
},
"scripts": {
"test": "pest",
"static": "phpstan analyze",
"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
}
}
}