summaryrefslogtreecommitdiffstats
path: root/src/Cache/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-06-11 12:17:54 +0200
committerRemi Collet <remi@remirepo.net>2018-06-11 12:17:54 +0200
commit10e9b83b9934486dd8c50fe0832332cd58fab26d (patch)
tree11b1afedd53d7db3ed8fc952f5ac2b721395afe3 /src/Cache/composer.json
Initial packaging with cache, collection, core, database, database and utility sub-packages
Diffstat (limited to 'src/Cache/composer.json')
-rw-r--r--src/Cache/composer.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Cache/composer.json b/src/Cache/composer.json
new file mode 100644
index 0000000..23289aa
--- /dev/null
+++ b/src/Cache/composer.json
@@ -0,0 +1,33 @@
+{
+ "name": "cakephp/cache",
+ "description": "Easy to use Caching library with support for multiple caching backends",
+ "type": "library",
+ "keywords": [
+ "cakephp",
+ "caching",
+ "cache"
+ ],
+ "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/cache"
+ },
+ "require": {
+ "php": ">=5.6.0",
+ "cakephp/core": "^3.6.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Cake\\Cache\\": "."
+ }
+ }
+}