-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 888 Bytes
/
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
{
"name": "elisdn/yii2-gii-fixture-generator",
"description": "Fixture class generator for Gii module of Yii2 Framework.",
"type": "yii2-extension",
"keywords": ["yii2", "yii 2", "gii", "fixture"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dmitriy Yeliseyev",
"email": "[email protected]",
"homepage": "http://www.elisdn.ru"
}
],
"support": {
"issues": "https://github.com/ElisDN/yii2-gii-fixture-generator/issues?state=open",
"source": "https://github.com/ElisDN/yii2-gii-fixture-generator"
},
"require": {
"yiisoft/yii2-gii": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"elisdn\\gii\\fixture\\": "src/",
"elisdn\\gii\\fixture\\tests\\": "tests/"
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}