Commit 5bd87e2c5628a85e09cf837098af7ecb9ff948dd

Authored by adrian locla ubuntu
0 parents
Exists in master

first commit

Showing 1 changed file with 69 additions and 0 deletions   Show diff stats
README.md 0 → 100644
  1 +++ a/README.md
... ... @@ -0,0 +1,69 @@
  1 +Symfony Standard Edition
  2 +========================
  3 +
  4 +Welcome to the Symfony Standard Edition - a fully-functional Symfony2
  5 +application that you can use as the skeleton for your new applications.
  6 +
  7 +For details on how to download and get started with Symfony, see the
  8 +[Installation][1] chapter of the Symfony Documentation.
  9 +
  10 +What's inside?
  11 +--------------
  12 +
  13 +The Symfony Standard Edition is configured with the following defaults:
  14 +
  15 + * An AppBundle you can use to start coding;
  16 +
  17 + * Twig as the only configured template engine;
  18 +
  19 + * Doctrine ORM/DBAL;
  20 +
  21 + * Swiftmailer;
  22 +
  23 + * Annotations enabled for everything.
  24 +
  25 +It comes pre-configured with the following bundles:
  26 +
  27 + * **FrameworkBundle** - The core Symfony framework bundle
  28 +
  29 + * [**SensioFrameworkExtraBundle**][6] - Adds several enhancements, including
  30 + template and routing annotation capability
  31 +
  32 + * [**DoctrineBundle**][7] - Adds support for the Doctrine ORM
  33 +
  34 + * [**TwigBundle**][8] - Adds support for the Twig templating engine
  35 +
  36 + * [**SecurityBundle**][9] - Adds security by integrating Symfony's security
  37 + component
  38 +
  39 + * [**SwiftmailerBundle**][10] - Adds support for Swiftmailer, a library for
  40 + sending emails
  41 +
  42 + * [**MonologBundle**][11] - Adds support for Monolog, a logging library
  43 +
  44 + * [**AsseticBundle**][12] - Adds support for Assetic, an asset processing
  45 + library
  46 +
  47 + * **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and
  48 + the web debug toolbar
  49 +
  50 + * **SensioDistributionBundle** (in dev/test env) - Adds functionality for
  51 + configuring and working with Symfony distributions
  52 +
  53 + * [**SensioGeneratorBundle**][13] (in dev/test env) - Adds code generation
  54 + capabilities
  55 +
  56 +All libraries and bundles included in the Symfony Standard Edition are
  57 +released under the MIT or BSD license.
  58 +
  59 +Enjoy!
  60 +
  61 +[1]: http://symfony.com/doc/2.6/book/installation.html
  62 +[6]: http://symfony.com/doc/2.6/bundles/SensioFrameworkExtraBundle/index.html
  63 +[7]: http://symfony.com/doc/2.6/book/doctrine.html
  64 +[8]: http://symfony.com/doc/2.6/book/templating.html
  65 +[9]: http://symfony.com/doc/2.6/book/security.html
  66 +[10]: http://symfony.com/doc/2.6/cookbook/email.html
  67 +[11]: http://symfony.com/doc/2.6/cookbook/logging/monolog.html
  68 +[12]: http://symfony.com/doc/2.6/cookbook/assetic/asset_management.html
  69 +[13]: http://symfony.com/doc/2.6/bundles/SensioGeneratorBundle/index.html
... ...