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.
- Host: GitHub
- URL: https://github.com/thecodingmachine/harmony-symfony-module
- Owner: thecodingmachine
- Created: 2015-04-24T15:08:56.000Z (about 11 years ago)
- Default Branch: 2.0
- Last Pushed: 2015-04-25T14:08:09.000Z (about 11 years ago)
- Last Synced: 2025-02-16T12:30:27.225Z (over 1 year ago)
- Language: PHP
- Size: 121 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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