vincet / symfony-standard
The "Symfony Standard Edition" distribution
Requires
- php: >=5.3.3
- doctrine/doctrine-bundle: 1.1.*
- doctrine/orm: >=2.2.3,<2.5-dev
- jms/di-extra-bundle: 1.1.*
- jms/security-extra-bundle: 1.2.*
- kriswallsmith/assetic: 1.1.*@dev
- sensio/distribution-bundle: 2.1.*
- sensio/framework-extra-bundle: 2.1.*
- sensio/generator-bundle: 2.1.*
- simplethings/entity-audit-bundle: dev-master
- sonata-project/admin-bundle: 2.1.*@dev
- sonata-project/doctrine-orm-admin-bundle: 2.1.*@dev
- sonata-project/intl-bundle: 2.1.0
- sonata-project/user-bundle: 2.1.*@dev
- symfony/assetic-bundle: 2.1.*
- symfony/monolog-bundle: 2.1.*
- symfony/swiftmailer-bundle: 2.1.*
- symfony/symfony: 2.1.*
- trsteel/ckeditor-bundle: dev-master
- twig/extensions: 1.0.*@dev
- vincet/admin-bundle: 2.1.*@dev
- vincet/admin-configuration-bundle: 2.1.*@dev
- vincet/base-bundle: 2.1.*@dev
- vincet/bootstrap-form-bundle: dev-master
This package is auto-updated.
Last update: 2023-07-27 08:52:32 UTC
README
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.
- Checking your System Configuration
Before starting coding, make sure that your local system is properly configured for Symfony.
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.
- 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.
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 following command to install vendors:
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 :
http://localhost/path/to/symfony/app/web/admin/dashboard
- Browsing the Demo Application
Congratulations! You're now ready to use Symfony.
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
- 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.
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:
-
delete the
src/Acme
directory; -
remove the routing entries referencing AcmeBundle in
app/config/routing_dev.yml
; -
remove the AcmeBundle from the registered bundles in
app/AppKernel.php
; -
remove the
web/bundles/acmedemo
directory; -
remove the
security.providers
,security.firewalls.login
andsecurity.firewalls.secured_area
entries in thesecurity.yml
file or tweak the security configuration to fit your needs.
What's inside?
The Symfony Standard Edition is configured with the following defaults:
-
Twig is the only configured template engine;
-
Doctrine ORM/DBAL is configured;
-
Swiftmailer is configured;
-
Annotations for everything are enabled.
It comes pre-configured with the following bundles:
-
FrameworkBundle - The core Symfony framework bundle
-
SensioFrameworkExtraBundle - Adds several enhancements, including template and routing annotation capability
-
DoctrineBundle - Adds support for the Doctrine ORM
-
TwigBundle - Adds support for the Twig templating engine
-
SecurityBundle - Adds security by integrating Symfony's security component
-
SwiftmailerBundle - Adds support for Swiftmailer, a library for sending emails
-
MonologBundle - Adds support for Monolog, a logging library
-
AsseticBundle - Adds support for Assetic, an asset processing library
-
JMSSecurityExtraBundle - Allows security to be added via annotations
-
JMSDiExtraBundle - Adds more powerful dependency injection features
-
WebProfilerBundle (in dev/test env) - Adds profiling functionality and the web debug toolbar
-
SensioDistributionBundle (in dev/test env) - Adds functionality for configuring and working with Symfony distributions
-
SensioGeneratorBundle (in dev/test env) - Adds code generation capabilities
-
AcmeDemoBundle (in dev/test env) - A demo bundle with some example code
-
SonataAdminBundle - Add backend interface
-
SonataUserBundle - User entity with authentication for backend and frontend
-
VinceTBaseBundle - Bundle for code generation
-
VinceTAdminBundle - Extends SonataAdminBundle
-
VinceTAdminConfigurationBundle - Add a configuration interface to the backend
-
VinceTBootstrapFormBundle - Adds some usefull form types
Enjoy!