33 lines
539 B
JSON
33 lines
539 B
JSON
{
|
|
"version": "1.0.0",
|
|
"name": "madeorsk/forwarded",
|
|
"description": "Forwarded header (RFC 7239) parsing library for PHP.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Madeorsk",
|
|
"email": "madeorsk@protonmail.com"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"test": "phpunit tests/"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Madeorsk\\Forwarded\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Madeorsk\\Forwarded\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.1"
|
|
}
|
|
}
|