An open API service indexing awesome lists of open source software.

https://github.com/thecodingmachine/harmony-symfony-module

This package is an Harmony module for the Symfony 2 PHP framework.
https://github.com/thecodingmachine/harmony-symfony-module

Last synced: 3 months ago
JSON representation

This package is an Harmony module for the Symfony 2 PHP framework.

Awesome Lists containing this project

README

          

Symfony2's Harmony module
=========================

This package contains a module that connects the Harmony user interface to the Symfony 2 PHP framework.

Step 1: Download the Module
---------------------------

Include the package in your **composer.json**:

**composer.json**
```
{
"require-dev": {
"harmony/harmony": "~1.0",
"harmony/symfony-module": "~2.0"
}
}
```

Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:

```bash
$ composer update
```

Step 2: Install the bundle in your Symfony application
------------------------------------------------------

Then, enable the bundle by adding the following line in the `app/AppKernel.php`
file of your project:

```php