initial commit
parents
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "esempla/yii2tech-migration-creator", | ||
"description": "Migration generator for Yii 2.", | ||
"type": "yii2-extension", | ||
"keywords": ["yii2", "migration", "migrate", "generator", "console"], | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "Pawel Bizley Brzozowski", | ||
"email": "pawel@positive.codes" | ||
}, | ||
{ | ||
"name": "Golban Stefan", | ||
"email": "golbanstefan@gmail.com" | ||
} | ||
], | ||
"support": { | ||
"source": "https://git.bts.md/synaptek/yii2tech-migration-creator" | ||
}, | ||
"require": { | ||
"php": ">=7.1.0", | ||
"ext-mbstring": "*", | ||
"yiisoft/yii2": ">=2.0.15.1 <2.1.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.3", | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"bizley\\migration\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"bizley\\tests\\": "tests/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
] | ||
} |
phpunit.xml
0 → 100644
src/Generator.php
0 → 100644