This module integrates Gaufrette with Zend Framework 2.
Zend Framework 2 Skeleton Application (or compatible architecture)
Install the module through Composer using the following steps:
-
cd my/project/directory
-
Create a
composer.json
file with following contents (or update your existing file accordingly):{ "require": { "detailnet/gaufrette-module": "1.x-dev" } }
-
Install Composer via
curl -s http://getcomposer.org/installer | php
(on Windows, download the installer and execute it with PHP) -
Run
php composer.phar self-update
-
Run
php composer.phar install
-
Open
configs/application.config.php
and add following key to yourmodules
:'Detail\Gaufrette',
-
Copy
vendor/detailnet/gaufrette-module/config/gaufrette.local.php.dist
into your application'sconfig/autoload
directory, rename it togaufrette.local.php
and make the appropriate changes.
tbd