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

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

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

Last synced: 8 months ago
JSON representation

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

Awesome Lists containing this project

README

          

ZF2's Harmony module
====================

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

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

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

**composer.json**
```
{
"require-dev": {
"harmony/harmony": "~1.0",
"harmony/zf2-module": "~1.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: Register the ZF2 module with Harmony
--------------------------------------------

Now, create a **modules.php** file at the root of your package and instantiate
the ZF2 module:

**modules.php**
```php