-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 939 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
37
38
39
40
41
42
43
44
{
"name": "sheershoff/yii2-module-urlrules",
"description": "Extension to support module url rules for Yii2.",
"type": "yii2-extension",
"keywords": [
"sheershoff",
"yii",
"yii2",
"extension",
"module",
"url",
"routing",
"url rules",
"urlrules"
],
"license": "MIT",
"authors": [
{
"name": "Ilya Sheershoff",
"email": "[email protected]",
"homepage": "http://sheershoff.ru/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/sheershoff/yii2-module-urlrules/issues",
"source": "https://github.com/sheershoff/yii2-module-urlrules"
},
"require": {
"php": ">=5.3.0",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"sheershoff\\ModuleUrlRules\\": "src"
}
},
"extra": {
"bootstrap": "sheershoff\\ModuleUrlRules\\ModuleUrlRules"
}
}