Sympress
1) Installation
Use Composer (recommended)
As Symfony uses [Composer][1] to manage its dependencies, the recommended way
to create a new project is to use it., (*1)
If you don't have Composer yet, download it following the instructions on
http://getcomposer.org/ or just run the following command:, (*2)
curl -s http://getcomposer.org/installer | php
Then, use the create-project
command to generate a new Symfony application:, (*3)
php composer.phar create-project amenophis/sympress path/to/install
Composer will install Symfony and all its dependencies under the
path/to/install
directory., (*4)
2) Checking your System Configuration
Before starting coding, make sure that your local system is properly
configured for Symfony., (*5)
Execute the check.php
script from the command line:, (*6)
php app/check.php
Access the config.php
script from a browser:, (*7)
http://localhost/path/to/sympress/app/web/config.php
If you get any warnings or recommendations, fix them before moving on., (*8)
Enjoy!, (*9)