-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.26 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
{
"name": "albertborsos/yii2-rest",
"description": "Yii 2.0 REST API related classes with some improvements",
"type": "yii2-extension",
"keywords": ["yii2","extension"],
"license": "MIT",
"authors": [
{
"name": "Abert Borsos",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"albertborsos/yii2-ddd": "dev-repository"
},
"require-dev": {
"codeception/codeception": "~3.0",
"codeception/verify": "~1.0",
"codeception/specify": "~1.0",
"codeception/mockery-module": "^0.3.0",
"mockery/mockery": "^0.9.9 || ^1.0.0",
"phpunit/phpunit": "^7.0.0",
"hoa/file": "~1.0",
"hoa/consistency": "^1.17.05.02",
"squizlabs/php_codesniffer": "~2.8",
"php-coveralls/php-coveralls": "^2.1",
"mito/yii2-coding-standards": "~2.0.0-beta16"
},
"autoload": {
"psr-4": {
"albertborsos\\rest\\": "src/",
"albertborsos\\rest\\tests\\": "tests/",
"albertborsos\\rest\\tests\\support\\base\\": "tests/_support/base/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}