From 2648a974184e9241305dfc44546188e74c4ef5e1 Mon Sep 17 00:00:00 2001 From: "John P. Bloch" Date: Fri, 11 Jan 2013 10:15:37 -0500 Subject: [PATCH] Add a composer.json file to the framework Add a composer manifest to the framework. This will let people manage installation and updates of dependencies very efficiently while also keeping the size and complexity of the framework itself small. The vendor directory and composer.lock files will be ignored by git. --- .gitignore | 2 ++ composer.json | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index f185c72..0736344 100755 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ Desktop.ini *.log Uploads Storage +vendor +composer.lock diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2eea67f --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "micromvc/micromvc", + "type": "library", + "description": "The worlds smallest, full featured, object-oriented PHP 5 Framework", + "keywords": ["microframework", "micro", "mvc"], + "homepage": "http://micromvc.com", + "license": "MIT", + "authors": [ + { + "name": "David Pennington", + "homepage": "http://xeoncross.com" + } + ], + "require": { + "php": ">=5.3.0", + "micro/micro": "dev-master" + }, + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/Xeoncross/Micro.git" + } + ], + "autoload": { + "psr-0": { + "": "Class" + } + } +}