forked from Insolita/yii2-fractal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (53 loc) · 1.11 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "php-openapi/yii2-fractal",
"description": "Json-api spec implementation with league/fractal, forked from Insolita (RIP)",
"keywords": [
"yii2",
"rest",
"json",
"json-api"
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8",
"ext-json": "*",
"league/fractal": "^0.20.0",
"yiisoft/yii2": "~2.0.15"
},
"require-dev": {
"cebe/indent": "*",
"friendsofphp/php-cs-fixer": "~2.16",
"codeception/codeception": "5.1.*",
"codeception/module-yii2": "^1.1",
"codeception/module-rest": "^3.0",
"codeception/module-phpbrowser": "3.0.*",
"codeception/module-asserts": "^3.0",
"fzaninotto/faker": "^1.9@dev",
"codeception/module-db": "^3.0",
"codeception/assert-throws": "^1.0",
"codeception/verify": "^1.5"
},
"autoload": {
"psr-4": {
"insolita\\fractal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\codeception\\unit\\": "unit/",
"tests\\testapp\\": "app/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}