-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
56 lines (56 loc) · 1.16 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "bizley/migration",
"description": "Migration generator for Yii 2.",
"type": "yii2-extension",
"keywords": ["yii2", "migration", "migrate", "generator", "updater", "console"],
"license": "Apache-2.0",
"authors": [
{
"name": "Paweł Bizley Brzozowski",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/bizley/yii2-migration"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bizley"
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"ext-pdo": "*",
"yiisoft/yii2": "^2.0.19"
},
"require-dev": {
"infection/infection": "*",
"phpstan/phpstan": "*",
"phpunit/phpunit": "<10.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"bizley\\migration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"bizley\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"yiisoft/yii2-composer": true
}
}
}