Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
Add a composer.json file to the framework
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
John P. Bloch committed Jan 11, 2013
1 parent 0e8cc23 commit 2648a97
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ Desktop.ini
*.log
Uploads
Storage
vendor
composer.lock
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit 2648a97

Please sign in to comment.