rogerclotet / symfony-bootstrapped
The "Symfony Bootstrapped Edition" distribution
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=5.3.3
- braincrafted/bootstrap-bundle: dev-master
- doctrine/doctrine-bundle: 1.2.*
- doctrine/orm: >=2.2.3,<2.4-dev
- incenteev/composer-parameter-handler: ~2.0
- sensio/distribution-bundle: 2.3.*
- sensio/framework-extra-bundle: 2.3.*
- sensio/generator-bundle: 2.3.*
- symfony/assetic-bundle: 2.3.*
- symfony/monolog-bundle: 2.3.*
- symfony/swiftmailer-bundle: 2.3.*
- symfony/symfony: 2.3.*
- twig/extensions: 1.0.*
- twitter/bootstrap: 2.3.*
This package is not auto-updated.
Last update: 2024-12-17 03:35:37 UTC
README
Modified version of the Symfony 2.3.1 Standard edition with a few changes and initialisation, mostly Twitter Bootstrap and less css.
Installing the Symfony Bootstrapped Edition
As in the Standard Edition, you have two main options to install the Bootstrapped Edition:
Use Composer (recommended)
As Symfony uses Composer to manage its dependencies, the recommended way to create a new project is to use it.
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
Then, use the create-project
command to generate a new Symfony application:
php composer.phar create-project rogerclotet/symfony-bootstrapped path/to/install
Composer will install Symfony and all its dependencies under the
path/to/install
directory.
Download an Archive File
To quickly test Symfony, you can also download an archive of the Bootstrapped Edition and unpack it somewhere under your web server root directory.
If you downloaded an archive "without vendors", you also need to install all the necessary dependencies. Download composer (see above) and run the following command:
php composer.phar install