-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
62 lines (62 loc) · 1.7 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
55
56
57
58
59
60
61
62
{
"name": "friendsofcake/fixturize",
"description": "CakePHP Fixture classes to help increase productivity or performance",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"testing",
"fixture",
"fixtures",
"unittest",
"phpunit",
"performance"
],
"homepage": "https://github.com/FriendsOfCake/fixturize",
"license": "MIT",
"authors": [
{
"name": "Christian Winther",
"role": "Author"
},
{
"name": "José Lorenzo Rodríguez",
"role": "Contributor",
"homepage": "https://github.com/lorenzo"
}
],
"autoload": {
"psr-4": {
"FriendsOfCake\\Fixturize\\": "src/"
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16 -p src/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/",
"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",
"tools-setup": "phive install",
"test": "phpunit"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0"
},
"support": {
"source": "https://github.com/FriendsOfCake/fixturize",
"issues": "https://github.com/FriendsOfCake/fixturize/issues"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}