-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.26 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
{
"name": "crustum/batch-queue",
"description": "CakePHP Batch Queue",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"cakephp/queue": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"enqueue/fs": "^0.10.26",
"cakedc/cakephp-enqueue": "^2.0",
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"Crustum\\BatchQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crustum\\BatchQueue\\Test\\": "tests/"
}
},
"scripts": {
"cs-check": "phpcs -p --standard=phpcs.xml src/ tests/",
"cs-fix": "phpcbf --standard=phpcs.xml src/ tests/",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"stan": "tools/phpstan analyse src/",
"psalm": "tools/psalm --show-info=false",
"stan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"stan-baseline": "tools/phpstan --generate-baseline"
},
"extra": {
"installer-name": "BatchQueue"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}