-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.42 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
{
"name": "bedita/aws",
"description": "BEdita 5 plugin for applications that use AWS resources such as S3",
"type": "cakephp-plugin",
"require": {
"php": "^7.4 || ^8.0",
"ext-openssl": "*",
"aws/aws-sdk-php": "^3.222",
"bedita/core": "^5.0.0",
"cakephp/cakephp": "^4.4.1",
"lcobucci/jwt": "^4.2.1",
"league/flysystem": "^2.4.3",
"league/flysystem-aws-s3-v3": "^2.4.3",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "~4.5.1",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "~1.8.2",
"cakephp/authentication": "^2.9",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^1.1"
},
"suggest": {
"cakephp/authentication": "^2.9"
},
"autoload": {
"psr-4": {
"BEdita\\AWS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\AWS\\Test\\": "tests"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"stan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --colors=always"
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}