44 lines
953 B
JSON
44 lines
953 B
JSON
{
|
|
"name": "amphp/parser",
|
|
"homepage": "https://github.com/amphp/parser",
|
|
"description": "A generator parser to make streaming parsers simple.",
|
|
"support": {
|
|
"issues": "https://github.com/amphp/parser/issues"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"async",
|
|
"non-blocking",
|
|
"parser"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
},
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"amphp/php-cs-fixer-config": "^2",
|
|
"psalm/phar": "^5.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Parser\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Parser\\Test\\": "test"
|
|
}
|
|
}
|
|
}
|