2017 © Pedro Peláez
 

library symfony-standard

The "Symfony Standard Edition" distribution

image

vincet/symfony-standard

The "Symfony Standard Edition" distribution

  • Sunday, September 15, 2013
  • by vincenttouzet
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

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., (*1)

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., (*2)

1) Checking your System Configuration

Before starting coding, make sure that your local system is properly configured for Symfony., (*3)

Execute the check.php script from the command line:, (*4)

php app/check.php

Access the config.php script from a browser:, (*5)

http://localhost/path/to/symfony/app/web/config.php

If you get any warnings or recommendations, fix them before moving on., (*6)

2) Installing the Standard Edition

Set rights / facl

chmod 777 app/cache app/logs
setfacl -d -m g::rwx app/cache app/logs
setfacl -d -m o::rwx app/cache app/logs

Update vendors using Composer

As Symfony uses Composer to manage its dependencies, the recommended way to create a new project is to use it., (*7)

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:, (*8)

curl -s http://getcomposer.org/installer | php

Then use the following command to install vendors:, (*9)

php composer.phar update

Create your database

  • Edit your database access in app/config/parameters.yml
  • Create the database if it does not exist
    php app/console doctrine:database:create
  • Update database schema (use --force to force update)
    php app/console doctrine:schema:update

Create a backend user

php app/console fos:user:create admin admin@example.com admin --super-admin

Now you can access the admin panel :, (*10)

http://localhost/path/to/symfony/app/web/admin/dashboard

3) Browsing the Demo Application

Congratulations! You're now ready to use Symfony., (*11)

From the config.php page, click the "Bypass configuration and go to the Welcome page" link to load up your first Symfony page., (*12)

You can also use a web-based configurator by clicking on the "Configure your Symfony Application online" link of the config.php page., (*13)

To see a real-live Symfony page in action, access the following page:, (*14)

web/app_dev.php/demo/hello/Fabien

4) Getting started with Symfony

This distribution is meant to be the starting point for your Symfony applications, but it also contains some sample code that you can learn from and play with., (*15)

A great way to start learning Symfony is via the Quick Tour, which will take you through all the basic features of Symfony2., (*16)

Once you're feeling good, you can move onto reading the official Symfony2 book., (*17)

A default bundle, AcmeDemoBundle, shows you Symfony2 in action. After playing with it, you can remove it by following these steps:, (*18)

  • delete the src/Acme directory;, (*19)

  • remove the routing entries referencing AcmeBundle in app/config/routing_dev.yml;, (*20)

  • remove the AcmeBundle from the registered bundles in app/AppKernel.php;, (*21)

  • remove the web/bundles/acmedemo directory;, (*22)

  • remove the security.providers, security.firewalls.login and security.firewalls.secured_area entries in the security.yml file or tweak the security configuration to fit your needs., (*23)

What's inside?

The Symfony Standard Edition is configured with the following defaults:, (*24)

  • Twig is the only configured template engine;, (*25)

  • Doctrine ORM/DBAL is configured;, (*26)

  • Swiftmailer is configured;, (*27)

  • Annotations for everything are enabled., (*28)

It comes pre-configured with the following bundles:, (*29)

  • FrameworkBundle - The core Symfony framework bundle, (*30)

  • SensioFrameworkExtraBundle - Adds several enhancements, including template and routing annotation capability, (*31)

  • DoctrineBundle - Adds support for the Doctrine ORM, (*32)

  • TwigBundle - Adds support for the Twig templating engine, (*33)

  • SecurityBundle - Adds security by integrating Symfony's security component, (*34)

  • SwiftmailerBundle - Adds support for Swiftmailer, a library for sending emails, (*35)

  • MonologBundle - Adds support for Monolog, a logging library, (*36)

  • AsseticBundle - Adds support for Assetic, an asset processing library, (*37)

  • JMSSecurityExtraBundle - Allows security to be added via annotations, (*38)

  • JMSDiExtraBundle - Adds more powerful dependency injection features, (*39)

  • WebProfilerBundle (in dev/test env) - Adds profiling functionality and the web debug toolbar, (*40)

  • SensioDistributionBundle (in dev/test env) - Adds functionality for configuring and working with Symfony distributions, (*41)

  • SensioGeneratorBundle (in dev/test env) - Adds code generation capabilities, (*42)

  • AcmeDemoBundle (in dev/test env) - A demo bundle with some example code, (*43)

  • SonataAdminBundle - Add backend interface, (*44)

  • SonataUserBundle - User entity with authentication for backend and frontend, (*45)

  • [VinceTBaseBundle][18] - Bundle for code generation, (*46)

Enjoy!, (*47)

The Versions