-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.37 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"minimum-stability": "dev",
"name": "craftcms/cloud",
"type": "yii2-extension",
"require": {
"ext-curl": "*",
"bref/bref": "^2.4.2",
"bref/extra-php-extensions": "^1.7.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",
"aws/aws-sdk-php": "^3.342.6",
"craftcms/yii2-cache-cascade": "^1.2"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"codeception/codeception": "^5.0",
"vlucas/phpdotenv": "^5.0",
"codeception/module-asserts": "~3.1.0",
"codeception/module-yii2": "^1.0"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"test": "codecept run unit",
"test:coverage": "codecept run unit --coverage"
},
"autoload": {
"psr-4": {
"craft\\cloud\\": "src/"
},
"files": [
"autoload.php"
]
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"extra": {
"bootstrap": "craft\\cloud\\Module"
}
}