-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.1 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
69
70
71
72
73
74
{
"name": "cakedc/queue-monitor",
"description": "CakeDC Queue Monitor plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"cakephp",
"queue",
"queue monitoring",
"queue monitor"
],
"homepage": "https://github.com/CakeDC/cakephp-queue-monitor",
"authors": [
{
"name": "CakeDC",
"homepage": "https://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/CakeDC/cakephp-queue-monitor/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/CakeDC/cakephp-queue-monitor/issues",
"source": "https://github.com/CakeDC/cakephp-queue-monitor"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.1",
"cakephp/queue": "^2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.1.0",
"cakephp/migrations": "^4.0.0",
"cakephp/cakephp-codesniffer": "^5.1"
},
"autoload": {
"psr-4": {
"CakeDC\\QueueMonitor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\QueueMonitor\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"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-tests": "phpstan.phar analyze -c tests/phpstan.neon",
"stan-baseline": "phpstan.phar --generate-baseline",
"stan-setup": "phive install",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}