-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
123 lines (121 loc) · 3.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "hiqdev/hiapi",
"type": "yii2-extension",
"description": "HiAPI Yii2 base project for building API",
"keywords": [
"yii2",
"hiapi",
"core",
"api"
],
"homepage": "https://github.com/hiqdev/hiapi",
"license": "BSD-3-Clause",
"support": {
"email": "[email protected]",
"source": "https://github.com/hiqdev/hiapi",
"issues": "https://github.com/hiqdev/hiapi/issues",
"wiki": "https://github.com/hiqdev/hiapi/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "[email protected]",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "[email protected]",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1|^2",
"psr/container": "^1.0",
"hiqdev/yii-compat": "dev-master",
"hiqdev/yii2-autobus": "dev-master",
"hiqdev/yii2-data-mapper": "dev-master",
"vlucas/phpdotenv": "^2.4 || ^5.3.1",
"guzzlehttp/psr7": "^1.9 || ^2.0",
"league/event": "^2.1",
"yiisoft/event-dispatcher": "^1.0",
"php-amqplib/php-amqplib": "^3.0.0",
"ramsey/uuid": "^3.0 | ^4.0",
"doctrine/collections": "^1.6.4",
"yiisoft/request-body-parser": "dev-master",
"psr/http-server-middleware": "^1.0.1"
},
"require-dev": {
"hiqdev/hidev-php": "dev-master",
"hiqdev/hidev-hiqdev": "dev-master",
"vimeo/psalm": "^3.8.3",
"phpunit/phpunit": "^7.5.17",
"cebe/php-openapi": "^1.4.0",
"laminas/laminas-httphandlerrunner": "^1.1",
"laminas/laminas-diactoros": "^2.2",
"relay/relay": "2.0.0",
"middlewares/negotiation": "^2.0",
"doctrine/collections": "^1.6.4"
},
"suggest": {
"woohoolabs/yin": "To work with JsonAPI requests/responses",
"aura/router": "To use AuraRouterController",
"relay/relay": "To use HTTP Request handlers",
"laminas/laminas-httphandlerrunner": "To use HTTP request handlers",
"lcobucci/content-negotiation-middleware": "To use ContentNegotiation Middleware",
"middlewares/negotiation": "To use ContentNegotiation Middleware",
"laminas/laminas-diactoros": "To handle CLI request and use some Middlewares"
},
"autoload": {
"psr-4": {
"hiapi\\": "src",
"hiapi\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"hiapi\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"1.0": "1.0.x-dev"
},
"config-plugin": {
"constants": "config/constants.php",
"params": "config/params.php",
"common": "config/common.php",
"tests": "$common",
"console": [
"$common",
"config/console.php"
],
"web": [
"$common",
"config/web.php"
]
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}