Created
March 16, 2012 00:24
-
-
Save craigmarvelley/2047834 to your computer and use it in GitHub Desktop.
Symfony & PHPCR composer.json
This file contains hidden or 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": "symfony/framework-standard-edition", | |
"autoload": { | |
"psr-0": { "": "src/" } | |
}, | |
"require": { | |
"php": ">=5.3.2", | |
"symfony/symfony": "2.1.*", | |
"doctrine/orm": "2.2.*", | |
"doctrine/doctrine-bundle": "dev-master", | |
"twig/extensions": "dev-master", | |
"symfony/assetic-bundle": "dev-master", | |
"symfony/swiftmailer-bundle": "dev-master", | |
"symfony/monolog-bundle": "dev-master", | |
"sensio/distribution-bundle": "dev-master", | |
"sensio/framework-extra-bundle": "dev-master", | |
"sensio/generator-bundle": "dev-master", | |
"jms/security-extra-bundle": "dev-master", | |
"jackalope/jackalope-jackrabbit": "dev-master", | |
"doctrine/phpcr-odm": "dev-master", | |
"doctrine/phpcr-bundle": "dev-master" | |
}, | |
"scripts": { | |
"post-install-cmd": [ | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets" | |
], | |
"post-update-cmd": [ | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets" | |
] | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"extra": { | |
"symfony-app-dir": "app", | |
"symfony-web-dir": "web" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment