-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
68 lines (68 loc) · 1.79 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
63
64
65
66
67
68
{
"name": "friendsofcake/search",
"description": "CakePHP Search plugin using PRG pattern",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"prg",
"filter",
"search"
],
"authors": [
{
"name": "Christian Winther",
"role": "Author"
},
{
"name": "ADmad",
"homepage": "https://github.com/admad",
"role": "Contributor"
}
],
"homepage": "https://github.com/FriendsOfCake/search",
"support": {
"issues": "https://github.com/FriendsOfCake/search/issues",
"source": "https://github.com/FriendsOfCake/search"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/bake": "^3.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/twig-view": "^2.0",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"Search\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\Fixture\\": "vendor/cakephp/cakephp/tests/Fixture/",
"Search\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs -p src/ tests/",
"cs-fix": "phpcbf src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"stan-setup": "phive install",
"stan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"test": "phpunit"
}
}