detailnet / dfw-file-module
Zend Framework 2 Module for dfw-file
Requires
- php: >=5.4.0
- detailnet/dfw-core: ~0.1.1
- detailnet/dfw-file: ~0.1.2
- detailnet/dfw-log: ~0.2.0
- ocramius/proxy-manager: ~0.5
- psr/log: ~1.0
- zendframework/zend-loader: 2.*
- zendframework/zend-modulemanager: 2.*
- zendframework/zend-mvc: 2.*
- zendframework/zend-servicemanager: 2.*
Requires (Dev)
- detailnet/bernard-module: ~0.1.3
- detailnet/dfw-bernard: ~0.1.3
- detailnet/gaufrette-module: 0.1.2
- knplabs/gaufrette: 0.1.*
- league/flysystem: 0.3.*
- phpmd/phpmd: ~2.1.3
- phpunit/phpunit: ~4.4.5
- satooshi/php-coveralls: dev-master
- squizlabs/php_codesniffer: ~2.2.0
- zendframework/zend-http: 2.*
Suggests
- detailnet/gaufrette-module: For usage of Gaufrette based storage
- knplabs/gaufrette: For usage of Gaufrette based storage
- league/flysystem: For usage of Flysystem based storage
This package is auto-updated.
Last update: 2021-05-31 13:12:32 UTC
README
Introduction
This module integrates dfw-file with Zend Framework 2.
Requirements
Zend Framework 2 Skeleton Application (or compatible architecture)
Installation
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-file-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\File',
-
Copy
vendor/detailnet/dfw-file-module/config/detail_file.local.php.dist
into your application'sconfig/autoload
directory, rename it todetail_file.local.php
and make the appropriate changes.
Usage
tbd