-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.1 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
{
"name": "solutosoft/yii-settings",
"description": "The Shared Database used by all tenants",
"keywords": ["yii2", "extensão", "base"],
"homepage": "https://github.com/solutosoft/yii-settings",
"type": "yii-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Leandro Guindani Gehlen",
"email": "leandrogehlen@gmail.com",
"homepage": "https://github.com/leandrogehlen"
}
],
"support": {
"issues": "https://github.com/solutosoft/yii-settings/issues?state=open",
"source": "https://github.com/solutosoft/yii-settings"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"yiisoft/yii2": "~2.0.16"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"autoload": {
"psr-4": {
"solutosoft\\settings\\": "src",
"solutosoft\\settings\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}