switch to Guzzle module for HTTP calls

This commit is contained in:
2026-07-22 13:05:17 +02:00
parent 01b22f9c2d
commit 1cf674a31c
6 changed files with 2627 additions and 80 deletions
+13 -1
View File
@@ -3,11 +3,23 @@
"description": "Custom web pages PHP per elixForms",
"license": "proprietary",
"require": {
"php": ">=8.0"
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"ElixForms\\Common\\": "php/common/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests"
}
}