Created
May 11, 2011 16:33
-
-
Save craigmarvelley/966818 to your computer and use it in GitHub Desktop.
Setting up a Symfony 2 project with bleeding edge vendors on Windows
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
git init | |
mkdir vendor | |
git submodule add git://github.com/kriswallsmith/assetic.git vendor/assetic | |
mkdir vendor\bundles\JMS | |
git submodule add https://github.com/schmittjoh/SecurityExtraBundle.git vendor/bundles/JMS/SecurityExtraBundle | |
mkdir vendor\bundles\Sensio\Bundle | |
git submodule add https://github.com/sensio/SensioFrameworkExtraBundle.git vendor/bundles/Sensio/Bundle/FrameworkExtraBundle | |
mkdir vendor\bundles\Symfony\Bundle | |
git submodule add git://github.com/symfony/WebConfiguratorBundle.git vendor/bundles/Symfony/Bundle/WebConfiguratorBundle | |
git submodule add git://github.com/symfony/symfony.git vendor/symfony | |
git submodule add git://github.com/doctrine/doctrine2.git vendor/doctrine | |
git submodule add git://github.com/doctrine/dbal.git vendor/doctrine-dbal | |
git submodule add git://github.com/doctrine/common.git vendor/doctrine-common | |
git submodule add git://github.com/doctrine/mongodb.git vendor/doctrine-mongodb | |
git submodule add git://github.com/doctrine/mongodb-odm.git vendor/doctrine-mongodb-odm | |
git submodule add git://github.com/swiftmailer/swiftmailer.git vendor/swiftmailer | |
git submodule add git://github.com/fabpot/Twig.git vendor/twig | |
git submodule add git://github.com/fabpot/Twig-extensions.git vendor/twig-extensions | |
git submodule add git://github.com/Seldaek/monolog.git vendor/monolog | |
git submodule add git://github.com/symfony/DoctrineMongoDBBundle.git vendor/bundles/Symfony/Bundle/DoctrineMongoDBBundle | |
git submodule init | |
php bin\build_bootstrap.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment