-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 960 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
45
46
{
"name": "skiptirengu/yii2-mssql-schema",
"description": "Optimized Schema for Yii2 applications using mssql databases",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/skiptirengu/yii2-mssql-schema/issues?state=open",
"source": "https://github.com/skiptirengu/yii2-mssql-schema"
},
"authors": [
{
"name": "Skiptir Engu",
"email": "skiptir.engu@yandex.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "~2.0.13"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"skiptirengu\\mssql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"skiptirengu\\mssql\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"platform": {
"php": "5.6"
}
}
}