-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
69 lines (69 loc) · 2.11 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
{
"name": "cakephp/queue",
"description": "Queue plugin for CakePHP",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"queue"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/queue/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/queue",
"support": {
"issues": "https://github.com/cakephp/queue/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/queue"
},
"require": {
"php": ">=7.2.0",
"cakephp/cakephp": "^4.1",
"enqueue/simple-client": "^0.10",
"psr/log": "^1.1 || ^2.0"
},
"require-dev": {
"cakephp/bake": "^2.1",
"cakephp/cakephp-codesniffer": "^4.0",
"enqueue/fs": "^0.10",
"phpunit/phpunit": "^8.5 || ^9.3"
},
"suggest": {
"cakephp/bake": "Required if you want to generate jobs.",
"cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs."
},
"autoload": {
"psr-4": {
"Cake\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Queue\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"stan": "phpstan analyse && psalm.phar --show-info=false",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.5 psalm/phar:~4.22 && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}