Symfony standard edition with DDD architecture.
Welcome to the Symfony Standard DDD Edition - a fully-functional Symfony application with DDD architecture that you can use as the skeleton for your new applications.
For details on how to download and get started with Symfony, see the Installation chapter of the Symfony Documentation.
When it comes to installing the Symfony Standard DDD Edition, you have the following options.
As Symfony uses Composer to manage its dependencies, the recommended wayto 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 regniblod/symfony-ddd-edition --stability=dev path/to/install
Composer will install Symfony and all its dependencies under the path/to/install
directory.
To quickly test Symfony, you can also download an archive of the Standard DDD 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
Before starting coding, make sure that your local system is properly configured for Symfony.
Execute the check.php
script from the command line:
php bin/symfony_requirements
Access the config.php
script from a browser:
http://localhost/path/to/symfony/config.php
If you get any warnings or recommendations, fix them before moving on.
This distribution is meant to be the starting point for your Symfony applications.
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, ModuleBundle
, shows you Symfony DDD architecture in action. After playing with it, you can remove it by following these steps:
app/config/routing.yml
.app/AppKernel.php
.src/Project/Module
and tests/Project/Module
directories..gitkeep
files: find . -name .git -prune -o -type d -empty -exec touch {}/.gitkeep \;
Use the command symfony-ddd:generator:create-module <module_name>
to create a new module with the complete src and tests directory structure, bundle, services and repositories files, routing and Doctrine mapping.
The Symfony Standard DDD Edition is configured with the following defaults:
It comes pre-configured with the following bundles:
All libraries and bundles included in the Symfony Standard Edition are released under the MIT or BSD license.
TODO: Explain different layers.
src
└── Project
└── Module
├── Application
│ └── ModuleBundle
│ ├── Command
│ ├── Controller
│ ├── DependencyInjection
│ │ └── Compiler
│ └── Resources
│ ├── config
│ │ └── doctrine
│ └── views
│ └── default
├── Domain
│ ├── Component
│ ├── Event
│ ├── Exception
│ ├── Model
│ ├── Repository
│ ├── Service
│ └── Value
└── Infrastructure
├── Migrations
│ └── Doctrine
├── Repository
│ └── Doctrine
└── Service