Download the PHP package neoglez/batch-manager without Composer
On this page you can find all versions of the php package neoglez/batch-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package batch-manager
BatchManager
Introduction
The BatchManager is an attempt to port the Drupal Batch API to the Zend Framework 3 event-driven, service-oriented arquitecture. The batch manager can be used to simulate or even implement asynchronous processing. It also tries to solve (in a rather naive way) the problem of scalability in a PHP environment where you usually have to increase the maximum execution time to accomplish a task depending on the size of some input. The Drupal Batch API is a very simple but powerful idea for a lot of practical use cases. If you are not familiar with it [go and give it a try] (https://www.drupal.org/node/180528). So why then write this module? Well, Drupal Batch API depends on Drupal, which is a framework but also a CMS, so in my opinion it isn’t flexible enough; I also think that Drupal’s hook-philosophy reassemble that of an event driven, but with some limitations so this module aims to decouple the functionality while using the comprehensive ZF2 EventManager component.
Installation
Main setup
With composer
-
Load neoglez/batch-manager in your composer.json file.
- Update composer
By cloning project
If you do not want to use composer, clone this project (either as a git submodule or not) into ./vendor/ directory.
Post installation
-
Enable BatchManager in your
application.config.php
file. - To be able to use the assets under /batch-manager/public you can either install the module AssetManager or copy the files to your public directory.
Creating the table
You must create the required table in order to use the default BatchManager\Mapper\DbBatchMapper
. You may use the schema located in data/batch.sql.
>mysql database < data/batch.sql
All versions of batch-manager with dependencies
zendframework/zend-config Version ~2.2
zendframework/zend-crypt Version ~2.2
zendframework/zend-db Version ~2.2
zendframework/zend-eventmanager Version ~2.2
zendframework/zend-http Version ~2.2
zendframework/zend-i18n Version ~2.2
zendframework/zend-json Version ~2.2
zendframework/zend-loader Version ~2.2
zendframework/zend-modulemanager Version ~2.2
zendframework/zend-mvc Version ~2.2
zendframework/zend-serializer Version ~2.2
zendframework/zend-servicemanager Version ~2.2
zendframework/zend-session Version ~2.2
zendframework/zend-stdlib Version ~2.2
zendframework/zend-uri Version ~2.2
zendframework/zend-validator Version ~2.2
zendframework/zend-view Version ~2.2