-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
95 lines (95 loc) · 2.7 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
{
"name": "elisdnru/site",
"description": "",
"version": "1.0.0",
"type": "project",
"license": "BSD-3-Clause",
"require": {
"php": "^8.3",
"ext-PDO": "^8.3",
"ext-curl": "^8.3",
"ext-dom": "20031129",
"ext-fileinfo": "^8.3",
"ext-gd": "^8.3",
"ext-iconv": "^8.3",
"ext-mbstring": "^8.3",
"ext-posix": "^8.3",
"ext-xml": "^8.3",
"codemix/yii2-streamlog": "^1.3",
"laminas/laminas-diactoros": "^3.0",
"laminas/laminas-feed": "^2.12",
"php-http/curl-client": "^2.0",
"psr/simple-cache": "^3.0",
"sentry/sdk": "^4.0",
"webmozart/assert": "^1.9",
"yiisoft/yii2": "2.0.*-dev",
"yiisoft/yii2-redis": "^2.0",
"yiisoft/yii2-symfonymailer": "^4.0"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-yii2": "^1.1",
"dg/bypass-finals": "^1.3",
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^9.0",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.1"
},
"conflict": {
"friendsofphp/php-cs-fixer": "v3.5.0"
},
"replace": {
"bower-asset/jquery":"*",
"bower-asset/inputmask":"*",
"bower-asset/punycode":"*",
"bower-asset/yii2-pjax":"*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
},
"autoload": {
"files": [
"src/env.php",
"src/extensions/markdown/markdown/markdown.php"
],
"psr-4": {
"app\\": "src/"
}
},
"autoload-dev": {
"files": [
"src/overrides/Codeception/Lib/Connector/Yii2.php"
],
"psr-4": {
"tests\\": [
"tests/",
"tests/_support"
]
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"yiisoft/yii2-composer": true,
"php-http/discovery": true
}
},
"scripts": {
"app": "php bin/app.php",
"test": "codecept",
"lint": "phplint",
"php-cs-fixer": "php-cs-fixer --config=.php-cs-fixer.php",
"psalm": "psalm --config=psalm.xml"
}
}