-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
52 lines (52 loc) · 1.5 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
{
"name": "riesenia/cakephp-duplicatable",
"description": "CakePHP ORM plugin for duplicating entities (including related entities)",
"keywords": ["cakephp", "orm", "copy", "duplicate"],
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Tomas Saghy",
"email": "segy@riesenia.com"
}
],
"require": {
"cakephp/orm": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/cakephp": "^5.0",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"Duplicatable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Duplicatable\\Test\\": "tests",
"TestApp\\": "tests/test_app/TestApp",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"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"
],
"stan-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
}
}
}