forked from josegonzalez/cakephp-queuesadilla
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "josegonzalez/cakephp-queuesadilla",
"description": "CakePHP wrapper plugin around Queuesadilla, a generic php queueing backend",
"type": "cakephp-plugin",
"keywords": ["cakephp", "queue", "shell"],
"homepage": "https://github.com/josegonzalez/cakephp-queuesadilla",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "cakephp+queuesadilla@josediazgonzalez.com",
"homepage": "http://josediazgonzalez.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.4",
"cakephp/cakephp": "^5.0",
"league/event": "^2.0",
"psr/log": "^3.0"
},
"suggest": {
"ext-pcntl": "Required for queue worker processes on Unix"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"cakephp/cakephp-codesniffer": "^5.0",
"phpstan/phpstan": "^1.5"
},
"autoload": {
"psr-4": {
"Josegonzalez\\CakeQueuesadilla\\": "src"
},
"psr-0": {
"josegonzalez\\Queuesadilla": "packages/queuesadilla/src"
}
},
"autoload-dev": {
"psr-4": {
"Josegonzalez\\CakeQueuesadilla\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"check": [
"@cs-check",
"@stan"
],
"cs-check": "phpcs -n -p --standard=phpcs.xml.dist",
"cs-fix": "phpcbf --standard=phpcs.xml.dist",
"stan": "phpstan analyse src/",
"test": "phpunit -c phpunit.xml.dist"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}