-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
67 lines (67 loc) · 2.03 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
{
"name":"skie/cakephp-search",
"description":"CakePHP Plum Search plugin",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"search",
"filter",
"cake"
],
"homepage":"https://github.com/skie/plum-search",
"license":"MIT",
"authors":[
{
"name":"Evgeny Tomenko",
"role":"Author",
"homepage":"https://github.com/skie"
}
],
"minimum-stability": "dev",
"require":{
"php": ">=7.2.0",
"cakephp/cakephp": "4.0.*",
"cakephp/plugin-installer": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"vlucas/phpdotenv": "^3.3",
"cakephp/cakephp-codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"PlumSearch\\": "src",
"PlumSearch\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"PlumSearch\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"support":{
"source":"https://github.com/skie/plum-search",
"issues":"https://github.com/skie/plum-search/issues"
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@analyse"
],
"analyse": [
"@stan",
"@psalm"
],
"cs-check": "phpcs -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"test": "phpunit --stderr",
"_stan": "phpstan analyse -l 3 src",
"stan": "phpstan analyse src/",
"stan-test": "phpstan analyse tests/",
"psalm": "php vendor/psalm/phar/psalm.phar --show-info=false src/ ",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12.0 psalm/phar:^3.7 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
}
}