-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.67 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.67 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
56
57
58
59
60
61
{
"name": "cakedc/cakephp-uppy",
"description": "CakeDC Uppy plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"uppy",
"upload",
"amazon s3",
"cakedc"
],
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0",
"ext-mbstring": "*",
"aws/aws-sdk-php": "^3.279"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0",
"cakephp/migrations": "^4.0.0",
"markstory/asset_compress": "^5.0.0"
},
"autoload": {
"psr-4": {
"CakeDC\\Uppy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Uppy\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"phpstan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"phpstan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}