This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
85 lines (85 loc) · 2.5 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
{
"name": "yiisoft/yii-web",
"type": "library",
"description": "Yii Framework Web Extension",
"keywords": [
"yii",
"framework"
],
"homepage": "http://www.yiiframework.com/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii-web",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii-web"
},
"minimum-stability": "dev",
"require": {
"php": "^7.4|^8.0",
"ext-dom": "*",
"ext-json": "*",
"alexkart/curl-builder": "^1.0",
"psr/container": "1.0.0",
"psr/container-implementation": "1.0.0",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "1.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"yiisoft/access": "^1.0",
"yiisoft/aliases": "^1.1.0",
"yiisoft/auth": "^1.0",
"yiisoft/cookies": "^3.0@dev",
"yiisoft/friendly-exception": "^1.0",
"yiisoft/http": "^1.0",
"yiisoft/injector": "^1.0",
"yiisoft/network-utilities": "^3.0@dev",
"yiisoft/router": "^3.0@dev",
"yiisoft/security": "^1.0",
"yiisoft/serializer": "^3.0@dev",
"yiisoft/session": "^3.0@dev",
"yiisoft/validator": "^3.0@dev",
"yiisoft/yii-event": "^3.0@dev"
},
"require-dev": {
"nyholm/psr7": "^1.0",
"phpunit/phpunit": "^9.4",
"vimeo/psalm": "^4.1",
"yiisoft/cache": "^3.0@dev",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/router-fastroute": "^3.0@dev"
},
"provide": {
"psr/http-message-implementation": "1.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"params": "config/params.php",
"web": "config/web.php",
"tests": "$web"
}
},
"autoload": {
"psr-4": {
"Yiisoft\\Yii\\Web\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Yii\\Web\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}