Download the PHP package webridge/framework-admin-edition without Composer
On this page you can find all versions of the php package webridge/framework-admin-edition. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download webridge/framework-admin-edition
More information about webridge/framework-admin-edition
Files in webridge/framework-admin-edition
Package framework-admin-edition
Short Description The "Symfony Admin Edition" distribution customized for WeBridge needs
License MIT
Informations about the package framework-admin-edition
Symfony Admin Edition
Important : the current master is known to not work please use the branch 2.5 to get a working version
Welcome to the Symfony Admin Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications that requires a Admin backend.
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
When it comes to installing the Symfony Standard Edition, you have the following options.
Use Composer (recommended)
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 create-project
command to generate a new Symfony application:
php composer.phar create-project symfony/framework-standard-edition path/to/install
Composer will install Symfony and all its dependencies under the
path/to/install
directory.
Download an Archive File
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
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
The script returns a status code of 0
if all mandatory requirements are met,
1
otherwise.
Access the config.php
script from a browser:
http://localhost/path-to-project/web/config.php
If you get any warnings or recommendations, fix them before moving on.
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.
-
Sonata Admin bundle is configured in /admin
- FOSUserBundle is configured to manage your users
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
-
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
-
SonataAdminBundle - A bundle to generate admin interface
- FOSUSerBundle - A bundle to manage users login/registration/forget password
All libraries and bundles included in the Symfony Standard Edition are released under the MIT or BSD license.
Enjoy!
All versions of framework-admin-edition with dependencies
symfony/symfony Version 2.5.*
symfony/icu Version 1.0.*
doctrine/orm Version ~2.2,>=2.2.3
doctrine/doctrine-bundle Version ~1.2
doctrine/doctrine-fixtures-bundle Version 2.2.*
twig/extensions Version ~1.0
symfony/assetic-bundle Version ~2.3
symfony/swiftmailer-bundle Version ~2.3
symfony/monolog-bundle Version ~2.4
sensio/distribution-bundle Version ~3.0
sensio/framework-extra-bundle Version ~3.0
incenteev/composer-parameter-handler Version ~2.0
sonata-project/admin-bundle Version ~2.3.0
sonata-project/block-bundle Version ~2.2.13
sonata-project/cache Version ~1.0.4
sonata-project/exporter Version ~1.3.4
sonata-project/core-bundle Version ~2.3.0
sonata-project/doctrine-orm-admin-bundle Version ~2.3.0
friendsofsymfony/user-bundle Version ~1.3.5
friendsofsymfony/http-cache-bundle Version ~1.0