-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.12 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
{
"name": "app/php-russia-2024-yii2",
"description": "PHP Russia 2024 Yii 2 example application",
"license": "BSD-3-Clause",
"type": "project",
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-filter": "*",
"agielks/yii2-jwt": "^1.0",
"aws/aws-sdk-php": "^3.324.8",
"silinternational/yii2-json-log-targets": "^2.1",
"vlucas/phpdotenv": "^5.6.1",
"yiisoft/yii2": "^2.0.51",
"yiisoft/yii2-queue": "^2.3.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.64",
"icanhazstring/composer-unused": "^0.8.11",
"maglnet/composer-require-checker": "^4.13",
"phpyh/coding-standard": "^2.6.2",
"rector/rector": "^1.2.8",
"vimeo/psalm": "^5.26.1",
"yiisoft/yii2-debug": "^2.1.25"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"app\\": "src/"
},
"files": [
"src/infrastructure/functions.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"yiisoft/yii2-composer": true
},
"fxp-asset": {
"enabled": false
},
"process-timeout": 1800
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/web.php"
]
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
]
}
}