summaryrefslogtreecommitdiffstats
path: root/src/Http
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-12-16 12:04:40 +0100
committerRemi Collet <remi@remirepo.net>2019-12-16 12:04:40 +0100
commita0a57f9df7a9f23a5109ef9398f180e433f7f8de (patch)
tree012b8c4e0a739c0d51167302a81634dde2ce2eb1 /src/Http
parent2359afb9657dd3897a2a6f6eef2bd28df0d2ffd0 (diff)
- update to 4.0.0
- raise dependency on PHP 7.2 - use Chronos 2.0.1 - add Chronos, Console and Filesystem
Diffstat (limited to 'src/Http')
-rw-r--r--src/Http/composer.json48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/Http/composer.json b/src/Http/composer.json
new file mode 100644
index 0000000..73cdd62
--- /dev/null
+++ b/src/Http/composer.json
@@ -0,0 +1,48 @@
+{
+ "name": "cakephp/http",
+ "description": "CakePHP HTTP client and PSR7/15 middleware libraries",
+ "type": "library",
+ "keywords": [
+ "cakephp",
+ "http",
+ "psr7",
+ "psr15"
+ ],
+ "homepage": "https://cakephp.org",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "CakePHP Community",
+ "homepage": "https://github.com/cakephp/http/graphs/contributors"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/cakephp/cakephp/issues",
+ "forum": "https://stackoverflow.com/tags/cakephp",
+ "irc": "irc://irc.freenode.org/cakephp",
+ "source": "https://github.com/cakephp/http"
+ },
+ "require": {
+ "php": ">=7.2.0",
+ "cakephp/core": "^4.0",
+ "cakephp/event": "^4.0",
+ "cakephp/utility": "^4.0",
+ "psr/http-client": "^1.0",
+ "psr/http-server-handler": "^1.0",
+ "psr/http-server-middleware": "^1.0",
+ "zendframework/zend-diactoros": "^2.1",
+ "zendframework/zend-httphandlerrunner": "^1.0"
+ },
+ "provide": {
+ "psr/http-client-implementation": "^1.0"
+ },
+ "suggest": {
+ "cakephp/cache": "To use cache session storage",
+ "cakephp/orm": "To use database session storage"
+ },
+ "autoload": {
+ "psr-4": {
+ "Cake\\Http\\": "."
+ }
+ }
+}