From c86f9ab3e5f214b8cfbdcd0e03721b34720c3934 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 28 Dec 2013 18:24:22 -0500 Subject: [PATCH] Added composer.json for CakePHP 2.x --- composer.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000000..b0e05dc98ec --- /dev/null +++ b/composer.json @@ -0,0 +1,32 @@ +{ + "name": "cakephp/cakephp", + "description": "The CakePHP framework", + "type": "library", + "keywords": ["framework"], + "homepage": "http://cakephp.org", + "license": "MIT", + "authors": [ + { + "name": "CakePHP Community", + "homepage": "https://github.com/cakephp/cakephp/graphs/contributors" + } + ], + "support": { + "issues": "https://github.com/cakephp/cakephp/issues", + "forum": "http://stackoverflow.com/tags/cakephp", + "irc": "irc://irc.freenode.org/cakephp", + "source": "https://github.com/cakephp/cakephp" + }, + "require": { + "php": ">=5.2.8", + "ext-mcrypt": "*", + "ext-mbstring": "*" + }, + "require-dev": { + "phpunit/phpunit": "3.7.*", + "cakephp/debug_kit" : "2.2.*" + }, + "bin": [ + "lib/Cake/Console/cake" + ] +}