lockfile again

This commit is contained in:
Tim Bendt
2025-11-26 11:50:55 -05:00
parent af3c23cb6e
commit 6ceecaa69e
4461 changed files with 641349 additions and 10 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "riverline/multipart-parser",
"description": "One class library to parse multipart content with encoding and charset support.",
"keywords": ["http","multipart","parser"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Romain Cambien",
"email": "romain@cambien.net"
},
{
"name": "Riverline",
"homepage": "http://www.riverline.fr"
}
],
"require": {
"php": ">=7.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"psr/http-message": "*",
"symfony/psr-http-message-bridge": "*",
"laminas/laminas-diactoros": "*"
},
"autoload": {
"psr-4": {
"Riverline\\MultiPartParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Riverline\\MultiPartParser\\": "tests/"
}
}
}