2023-05-26 02:25:15 +02:00
|
|
|
{
|
2023-05-26 14:21:00 +02:00
|
|
|
"version": "1.0.0",
|
2023-05-26 02:25:15 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|