Created
January 21, 2013 04:20
-
-
Save elct9620/4583576 to your computer and use it in GitHub Desktop.
Composer create a slim framework project, and integrate LazyRecord.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "slim/slim-skeleton", | |
"description": "A Slim Framework skeleton application for rapid development", | |
"keywords": ["microframework","rest","router"], | |
"homepage": "http://github.com/codeguy/Slim-Skeleton", | |
"license": "MIT", | |
"authors": [ | |
{ | |
"name": "Josh Lockhart", | |
"email": "[email protected]", | |
"homepage": "http://www.joshlockhart.com/" | |
} | |
], | |
"repositories": [ | |
{ | |
"type": "pear", | |
"url": "http://pear2.php.net" | |
}, | |
{ | |
"type": "pear", | |
"url": "http://pear.corneltek.com" | |
}, | |
{ | |
"type": "pear", | |
"url": "pear.twig-project.org" | |
} | |
], | |
"require": { | |
"php": ">=5.3.0", | |
"slim/slim": "2.*", | |
"slim/extras": "2.*", | |
"twig/twig": "1.*", | |
"pear-corneltek/LazyRecord": "*", | |
"pear-corneltek/ConfigKit": "*", | |
"pear-corneltek/CLIFramework": "*", | |
"pear-corneltek/CascadingAttribute": "*" | |
}, | |
"autoload": { | |
"psr-0": {"Aotoki": "src/"} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment