-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.55 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
{
"name": "josbeir/cakephp-filesystem",
"description": "Filesystem plugin for CakePHP 4.0+",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name":"josbeir",
"role":"Author",
"homepage":"https://github.com/josbeir"
}
],
"support": {
"source":"https://github.com/josbeir/cakephp-filesystem",
"issues":"https://github.com/josbeir/cakephp-filesystem/issues"
},
"require": {
"php": "^8.0.2",
"cakephp/cakephp": "^4.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Josbeir\\Filesystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Josbeir\\Filesystem\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@test",
"@phpstan",
"@cs-check"
],
"test": "phpunit --colors=always",
"phpstan": "phpstan analyse --no-progress -c phpstan.neon -l 4 src",
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}