From a0a57f9df7a9f23a5109ef9398f180e433f7f8de Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Mon, 16 Dec 2019 12:04:40 +0100
Subject: - update to 4.0.0 - raise dependency on PHP 7.2 - use Chronos 2.0.1 -
 add Chronos, Console and Filesystem

---
 src/Http/composer.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 src/Http/composer.json

(limited to 'src/Http')

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\\": "."
+        }
+    }
+}
-- 
cgit