-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.21 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
{
"name": "lordsimal/cakephp-dump-sql",
"description": "A CakePHP 4 plugin to export SQL",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0",
"symfony/process": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"CakeDumpSql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeDumpSql\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p src tests",
"cs-fix": "phpcbf --colors -p src tests",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}