crafics / symfony-ddd-edition
The "Symfony DDD Edition" distribution
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=5.3.3
- behat/behat: 3.0.x-dev
- doctrine/doctrine-bundle: 1.2.*
- doctrine/orm: ~2.2,>=2.2.3
- friendsofsymfony/http-cache-bundle: ~1.0
- friendsofsymfony/rest-bundle: 1.4.*
- hautelook/templated-uri-bundle: ~2.0
- jms/serializer-bundle: 0.13.*@dev
- nelmio/api-doc-bundle: ~2.4
- sensio/distribution-bundle: 2.3.*
- sensio/framework-extra-bundle: 2.3.*
- sensio/generator-bundle: 2.3.*
- symfony/assetic-bundle: 2.3.*
- symfony/icu: 1.0.*
- symfony/monolog-bundle: ~2.3
- symfony/swiftmailer-bundle: 2.3.*
- symfony/symfony: ~2.3
- twig/extensions: 1.0.*
- willdurand/hateoas-bundle: 1.0.*@dev
- willdurand/rest-extra-bundle: ~1.0
Conflicts
- symfony/routing: 2.4.1
This package is not auto-updated.
Last update: 2024-11-19 09:11:41 UTC
README
Welcome to the Symfony DDD Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications.
This edition is a modified clone of the great gimler/symfony-rest-edition.
This document contains information on how to download, install, and start using Symfony. For a more detailed explanation, see the [Installation][1] chapter of the Symfony Documentation.
- Installing the DDD Edition
When it comes to installing the Symfony DDD Edition, you have the following options.
Use Composer (recommended)
As Symfony uses [Composer][2] 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 crafics/symfony-ddd-edition --stability=dev path/to/install
Composer will install Symfony and all its dependencies under the
path/to/install
directory.
test
Download an Archive File
To quickly test Symfony, you can also download an [archive][3] 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
- 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.