-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.45 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
{
"name": "xepozz/shortcut",
"type": "library",
"description": "A set of shortcuts for the Yii framework",
"keywords": [
"yii",
"yii3",
"yii-framework",
"yii-package",
"yii-extension",
"yii-component",
"yii-module",
"yii-plugin",
"yii-library",
"yii-shortcut",
"yii-helpers",
"shortcut",
"rapid-development"
],
"license": "MIT",
"authors": [
{
"name": "Dmitrii Derepko",
"email": "xepozz@list.ru"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"yiisoft/test-support": "^3.0",
"yiisoft/dummy-provider": "^1.0",
"yiisoft/view": "^8.0",
"yiisoft/yii-view": "^6.0",
"httpsoft/http-message": "^1.1",
"yiisoft/router": "^3.0",
"yiisoft/router-fastroute": "^3.0",
"vimeo/psalm": "^5.13",
"yiisoft/translator": "^3.0",
"yiisoft/user": "^2.0",
"yiisoft/access": "^1.1",
"yiisoft/validator": "^1.1",
"yiisoft/cache": "^3.0",
"psr/simple-cache": "^3.0"
},
"provide": {
"psr/event-dispatcher-implementation": "1.0.0",
"psr/http-factory-implementation": "1.0.0",
"psr/http-message-implementation": "1.0.0"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Xepozz\\Shortcut\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xepozz\\Shortcut\\Tests\\": "tests/"
}
},
"extra": {
"config-plugin-file": "configuration.php"
}
}