summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Cache/composer.json2
-rw-r--r--src/Collection/composer.json2
-rw-r--r--src/Console/composer.json42
-rw-r--r--src/Core/composer.json2
-rw-r--r--src/Database/composer.json2
-rw-r--r--src/Datasource/composer.json2
-rw-r--r--src/Event/composer.json2
-rw-r--r--src/Filesystem/composer.json2
-rw-r--r--src/Form/composer.json2
-rw-r--r--src/Http/composer.json49
-rw-r--r--src/I18n/composer.json2
-rw-r--r--src/Log/composer.json2
-rw-r--r--src/ORM/composer.json2
-rw-r--r--src/Utility/composer.json2
-rw-r--r--src/Validation/composer.json2
15 files changed, 104 insertions, 13 deletions
diff --git a/src/Cache/composer.json b/src/Cache/composer.json
index 2760303..c417e36 100644
--- a/src/Cache/composer.json
+++ b/src/Cache/composer.json
@@ -22,7 +22,7 @@
"source": "https://github.com/cakephp/cache"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"psr/simple-cache": "^1.0.0",
"cakephp/core": "^3.6.0"
},
diff --git a/src/Collection/composer.json b/src/Collection/composer.json
index 47a24c4..f638264 100644
--- a/src/Collection/composer.json
+++ b/src/Collection/composer.json
@@ -23,7 +23,7 @@
"source": "https://github.com/cakephp/collection"
},
"require": {
- "php": ">=5.6.0"
+ "php": ">=5.6.0,<8.0.0"
},
"autoload": {
"psr-4": {
diff --git a/src/Console/composer.json b/src/Console/composer.json
new file mode 100644
index 0000000..971d9a6
--- /dev/null
+++ b/src/Console/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "cakephp/console",
+ "description": "Build beautiful console applications with CakePHP",
+ "type": "library",
+ "keywords": [
+ "cakephp",
+ "console",
+ "cli",
+ "framework"
+ ],
+ "homepage": "https://cakephp.org",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "CakePHP Community",
+ "homepage": "https://github.com/cakephp/cache/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/console"
+ },
+ "require": {
+ "php": ">=7.2.0",
+ "cakephp/core": "^4.0",
+ "cakephp/event": "^4.0",
+ "cakephp/filesystem": "^4.0",
+ "cakephp/log": "^4.0",
+ "cakephp/utility": "^4.0"
+ },
+ "suggest": {
+ "cakephp/datasource": "To use the Shell or Command base classes",
+ "cakephp/orm": "To use the Shell or Command base classes"
+ },
+ "autoload": {
+ "psr-4": {
+ "Cake\\Console\\": "."
+ }
+ }
+}
diff --git a/src/Core/composer.json b/src/Core/composer.json
index 0ee9afc..815c276 100644
--- a/src/Core/composer.json
+++ b/src/Core/composer.json
@@ -22,7 +22,7 @@
"source": "https://github.com/cakephp/core"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/utility": "^3.6.0"
},
"suggest": {
diff --git a/src/Database/composer.json b/src/Database/composer.json
index c197115..839ffbf 100644
--- a/src/Database/composer.json
+++ b/src/Database/composer.json
@@ -24,7 +24,7 @@
"source": "https://github.com/cakephp/database"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/cache": "^3.6.0",
"cakephp/core": "^3.6.0",
"cakephp/datasource": "^3.6.0",
diff --git a/src/Datasource/composer.json b/src/Datasource/composer.json
index 7846db2..a1a9c12 100644
--- a/src/Datasource/composer.json
+++ b/src/Datasource/composer.json
@@ -24,7 +24,7 @@
"source": "https://github.com/cakephp/datasource"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0"
},
"suggest": {
diff --git a/src/Event/composer.json b/src/Event/composer.json
index e984d41..c0fd411 100644
--- a/src/Event/composer.json
+++ b/src/Event/composer.json
@@ -23,7 +23,7 @@
"source": "https://github.com/cakephp/event"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0"
},
"autoload": {
diff --git a/src/Filesystem/composer.json b/src/Filesystem/composer.json
index e5dcb07..62dc4ff 100644
--- a/src/Filesystem/composer.json
+++ b/src/Filesystem/composer.json
@@ -23,7 +23,7 @@
"source": "https://github.com/cakephp/filesystem"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0"
},
"autoload": {
diff --git a/src/Form/composer.json b/src/Form/composer.json
index 5e1dfdc..f186aa5 100644
--- a/src/Form/composer.json
+++ b/src/Form/composer.json
@@ -21,7 +21,7 @@
"source": "https://github.com/cakephp/form"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/event": "^3.6.0",
"cakephp/validation": "^3.6.0"
},
diff --git a/src/Http/composer.json b/src/Http/composer.json
new file mode 100644
index 0000000..5802f3e
--- /dev/null
+++ b/src/Http/composer.json
@@ -0,0 +1,49 @@
+{
+ "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",
+ "composer/ca-bundle": "^1.2",
+ "psr/http-client": "^1.0",
+ "psr/http-server-handler": "^1.0",
+ "psr/http-server-middleware": "^1.0",
+ "laminas/laminas-diactoros": "^2.1",
+ "laminas/laminas-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\\": "."
+ }
+ }
+}
diff --git a/src/I18n/composer.json b/src/I18n/composer.json
index 7ffc86f..611e487 100644
--- a/src/I18n/composer.json
+++ b/src/I18n/composer.json
@@ -28,7 +28,7 @@
"source": "https://github.com/cakephp/i18n"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"ext-intl": "*",
"cakephp/core": "^3.6.0",
"cakephp/chronos": "^1.0.0",
diff --git a/src/Log/composer.json b/src/Log/composer.json
index a775a4f..eeb2dac 100644
--- a/src/Log/composer.json
+++ b/src/Log/composer.json
@@ -23,7 +23,7 @@
"source": "https://github.com/cakephp/log"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0",
"psr/log": "^1.0.0"
},
diff --git a/src/ORM/composer.json b/src/ORM/composer.json
index 1432893..0ebc7f7 100644
--- a/src/ORM/composer.json
+++ b/src/ORM/composer.json
@@ -23,7 +23,7 @@
"source": "https://github.com/cakephp/orm"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/collection": "^3.6.0",
"cakephp/core": "^3.6.0",
"cakephp/datasource": "^3.6.0",
diff --git a/src/Utility/composer.json b/src/Utility/composer.json
index 4c5c8f1..bf5d684 100644
--- a/src/Utility/composer.json
+++ b/src/Utility/composer.json
@@ -25,7 +25,7 @@
"source": "https://github.com/cakephp/utility"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0"
},
"suggest": {
diff --git a/src/Validation/composer.json b/src/Validation/composer.json
index e4de56a..db585a3 100644
--- a/src/Validation/composer.json
+++ b/src/Validation/composer.json
@@ -22,7 +22,7 @@
"source": "https://github.com/cakephp/validation"
},
"require": {
- "php": ">=5.6.0",
+ "php": ">=5.6.0,<8.0.0",
"cakephp/core": "^3.6.0",
"cakephp/utility": "^3.6.0",
"psr/http-message": "^1.0.0"