Download the PHP
package tecnocen/yii2-migrate without Composer
On this page you can find all versions of the php package
tecnocen/yii2-migrate. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
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.
This library eases the creation of normalized databases by providing classes to
create tables separatedly with a simple logic.
Instalation
You can use composer to install the library tecnocen/migrate by running the
command;
composer require tecnocen/migrate
or edit the composer.json file
Usage
Create Table Migrations
You can use the tecnocen\migrate\CreateTableMigration to generate different
type of migration tables to be used by each of your table types.
For example lets say you want to save who and when edits and creates each the
entities on your system but your pivot tables only require to know when they
were created since they can't be edited.
Then you can use them separatedly for each type of table you have
When running the migration m170101_010101_ticket it will generate a table
with the columns
id,
project_id,
title,
description,
created_by,
updated_by
created_at,
updated_at
With primary key id and three foreign keys linked to the columns project_id,
created_by and updated_by.
And the migration m170101_010101_ticket_employee will generate a table with
the columns.
ticket_id
employee_id
created_at
With a composite primary key of the columns ticket_id and employee_id and
two foreign keys linked to the previous two columns.
Create View Migrations
You can use the tecnocen\migrate\CreateViewMigration to generate SQL views
migrations.
Where viewName() returns an string and viewQuery() return an instance of
yii\db\Query
Requiresphp Version
>=5.5 yiisoft/yii2 Version
~2.0.10
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 tecnocen/yii2-migrate contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.