Madeorsk
6810b25f58
+ Add a parser of Forwarded header. + Add classes for the Forwarded header in itself, and its components like a single Forward and its ForwardNodes. + Unit tests of some of the usable methods.
32 lines
518 B
JSON
32 lines
518 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|