-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.13 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
{
"minimum-stability": "dev",
"prefer-stable": true,
"name": "craftcms/cloud",
"type": "yii2-extension",
"require": {
"php": "^8.1",
"bref/bref": "2.1.21",
"bref/extra-php-extensions": "1.3.2",
"craftcms/cms": "^4.6",
"craftcms/flysystem": "^1.0.0",
"league/flysystem-aws-s3-v3": "^3.15",
"league/uri": "^7",
"league/uri-components": "^7",
"yiisoft/yii2-redis": "^2.0",
"yiisoft/yii2-queue": "^2.3.7",
"phlak/semver": "^4.1",
"99designs/http-signatures": "^4.0",
"symfony/process": "^6"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"autoload": {
"psr-4": {
"craft\\cloud\\": "src/"
},
"files": [
"autoload.php"
]
},
"prefer-stable": true,
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"extra": {
"bootstrap": "craft\\cloud\\Module"
}
}