https://github.com/robhogan/ice-janus.git
Symfony Standard Edition ========================
Welcome to the Symfony Standard Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications.
This document contains information on how to download, install, and start using Symfony. For a more detailed explanation, see the Installation chapter of the Symfony Documentation.
1) Installing the Standard Edition
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 https://getcomposer.org/installer | php
Then, use the create-project command to generate a new Symfony application:
php composer.phar create-project symfony/framework-standard-edition path/to/install 2.1.x-dev
For an exact version, replace 2.1.x-dev with the latest Symfony version (e.g. 2.1.1).
Composer will install Symfony and all its dependencies under the
path/to/install directory.
To quickly test Symfony, you can also download an archive of the Standard 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
2) Checking your System Configuration
Execute the check.php script from the command line:
php app/check.php
Access the config.php script from a browser:
http://localhost/path/to/symfony/app/web/config.php
If you get any warnings or recommendations, fix them before moving on.
3) Browsing the Demo Application
From the config.php page, click the "Bypass configuration and go to the
Welcome page" link to load up your first Symfony page.
You can also use a web-based configurator by clicking on the "Configure your
Symfony Application online" link of the config.php page.
To see a real-live Symfony page in action, access the following page:
web/app_dev.php/demo/hello/Fabien
4) Getting started with Symfony
A great way to start learning Symfony is via the Quick Tour, which will take you through all the basic features of Symfony2.
Once you're feeling good, you can move onto reading the official Symfony2 book.
A default bundle, AcmeDemoBundle, shows you Symfony2 in action. After
playing with it, you can remove it by following these steps:
src/Acme directory;app/config/routing_dev.yml;
app/AppKernel.php;web/bundles/acmedemo directory;security.providers, security.firewalls.login andsecurity.firewalls.secured_area entries in the security.yml file or
tweak the security configuration to fit your needs.
What's inside?
Enjoy!