chore: remove unnecessary configuration files
Some checks are pending
Docker Build and Publish / build (push) Waiting to run

This commit is contained in:
xboard 2025-01-17 19:54:02 +08:00
parent 762d1fb44b
commit ded0da79b0
2 changed files with 1 additions and 32 deletions

View File

@ -45,19 +45,11 @@
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
},
"patches": {
"joanhey/adapterman": {
"http": "patches/Http.patch"
}
}
},
"autoload": {

View File

@ -1,23 +0,0 @@
diff --git a/src/Http.php b/src/Http.php
index 6c6cb16..f1a7f3f 100644
--- a/src/Http.php
+++ b/src/Http.php
@@ -680,7 +680,7 @@
}
// Parse $_POST.
- if ($_SERVER['REQUEST_METHOD'] === 'POST' && $_SERVER['CONTENT_TYPE']) {
+ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
switch ($_SERVER['CONTENT_TYPE']) {
case 'multipart/form-data':
static::parseUploadFiles($http_body, $http_post_boundary);
@@ -691,6 +691,8 @@
case 'application/x-www-form-urlencoded':
\parse_str($http_body, $_POST);
break;
+ default:
+ $_POST = \json_decode($http_body, true) ?? [];
}
- }
+ }
}