-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
64 lines (64 loc) · 1.89 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
{
"name": "nmforce/phpdts",
"type": "project",
"description": "",
"autoload": {
"psr-4": {
"NMForce\\PHPDTS\\": "src"
}
},
"scripts": {
"post-update-cmd": [
"NMForce\\PHPDTS\\Installer::postUpdate",
"NMForce\\PHPDTS\\Installer::copyEnvFile"
],
"post-create-project-cmd": [
"App\\Installer::copyEnvFile"
]
},
"require": {
"httpsoft/http-message": "^1.0",
"paragonie/random_compat": "v2.0.21",
"psr/cache": "^3.0",
"psr/http-message": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"vlucas/phpdotenv": "^5.5",
"yiisoft/active-record": "dev-master",
"yiisoft/aliases": "^3.0",
"yiisoft/config": "^1.1",
"yiisoft/csrf": "^2.0",
"yiisoft/data-response": "^2.0",
"yiisoft/db": "dev-master",
"yiisoft/db-mysql": "dev-master",
"yiisoft/definitions": "^3.2",
"yiisoft/error-handler": "^3.0",
"yiisoft/log": "^2.0",
"yiisoft/middleware-dispatcher": "^5.0",
"yiisoft/router": "^3.0",
"yiisoft/router-fastroute": "^3.0",
"yiisoft/session": "^2.0",
"yiisoft/view": "^8.0",
"yiisoft/yii-http": "^1.0",
"yiisoft/yii-runner-http": "^2.0",
"yiisoft/yii-view": "^6.0"
},
"require-dev": {
"rector/rector": "^0.15.23",
"yiisoft/request-model": "dev-master",
"yiisoft/yii-debug": "dev-master",
"yiisoft/yii-debug-api": "dev-master",
"yiisoft/yii-gii": "dev-master",
"yiisoft/yii-middleware": "dev-master",
"yiisoft/yii-runner-console": "^2.0"
},
"extra": {
"config-plugin-file": "config/configuration.php"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/config": true
}
}
}