Download the PHP package andrey-mokhov/anelegan-db without Composer

On this page you can find all versions of the php package andrey-mokhov/anelegan-db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package anelegan-db

Migration for Zend Framework

This package allows you to organize DB migration for solutions based on ZF2.

Sorry for my English. The Russian-language documentation can be found at the following link.

Installation using Composer

Installation package by command:

After package installation add module in config/application.config.php

Development of migration

Migration module supported migration with implemented interface Anelegan\Db\Migration\MigrationInterface.

Development self migration

Your class must implemented interface Anelegan\Db\Migration\MigrationInterface:

  1. method getDependencies must return list with names of dependent migrations.
  2. method getName must return migration name equal key of array aliases in migration_manager your configuration.
  3. method setUp must change scheme and/or data in your database.
  4. method tearDown must rollback changes of method setUp.

Development migration with AbstractMigration

In Migration package you can found Anelegan\Db\Migration\AbstractMigration. This abstract class allows you to facilitate the development of migration. When inheriting this abstract class you must implement next methods:

Abstract class also have two methods:

Migration example

Create file module/Application/src/Application/Migration/CreateTesting.php with the following contents:

Installing migration

All migration must defined in configure file in migration_manager section.

Configure

For example create file config/autoload/migration.local.php with the following contents:

View list available migrations

Open shell and execute

Install migrations

To install available migration, execute

"Initialization" migration install in system by default. This migration allows you to control the installed migrations and their dependencies.

Remove installed migration

To remove installed migrations, execute

Supported database system

Current version supports:


All versions of anelegan-db with dependencies

PHP Build Version
Package Version
Requires php Version ^5.5 || ^7.0
zendframework/zend-db Version ^2.5
container-interop/container-interop Version ~1.0
zendframework/zend-console Version ^2.5
zendframework/zend-mvc Version ^2.5
zendframework/zend-servicemanager Version ^2.7.5 || ^3.0.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package andrey-mokhov/anelegan-db contains the following files

Loading the files please wait ....