This module contains tools for ZF Apigility.
Zend Framework 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/dfw-apigility-module": "^1.0" } }
-
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\Apigility',
-
Copy
vendor/detailnet/dfw-apigility-module/config/detail_apigility.local.php.dist
into your application'sconfig/autoload
directory, rename it todetail_apigility.local.php
and make the appropriate changes.