This repository was archived by the owner on Jan 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2 KB
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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "presentator/api",
"description": "Presentator v2 REST API",
"keywords": ["api", "presentator", "presentator-api", "design", "collaboration", "yii2"],
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/presentator/presentator/issues?state=open",
"source": "https://github.com/presentator/presentator-api"
},
"authors": [
{
"name": "Gani Georgiev",
"email": "gani.georgiev@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "~2.0.16",
"yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
"yiisoft/yii2-authclient": "~2.1",
"yii2tech/ar-position": "~1.0",
"creocoder/yii2-flysystem": "^0.9.0",
"intervention/image": "^2.4.2",
"google/apiclient": "^2.0",
"firebase/php-jwt": "^5.2",
"league/flysystem-aws-s3-v3": "^1.0"
},
"require-dev": {
"codeception/aspect-mock": "^3.0",
"codeception/codeception": "^4.0",
"codeception/specify": "^1.0",
"codeception/verify": "^1.0",
"softcreatr/jsonpath": "^0.5 || ^0.7",
"yiisoft/yii2-debug": "^2.0",
"yiisoft/yii2-faker": "^2.0",
"codeception/module-asserts": "^1.3",
"codeception/module-yii2": "^1.1",
"codeception/module-rest": "^1.2"
},
"config": {
"platform": {
"php": "7.1.0"
},
"optimize-autoloader": true,
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": false
}
},
"autoload": {
"psr-4": {
"presentator\\api\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}