forked from dereuromark/cakephp-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·64 lines (64 loc) · 2.18 KB
/
composer.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.18 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
60
61
62
63
64
{
"name": "dereuromark/cakephp-queue",
"type": "cakephp-plugin",
"description": "The Queue plugin for CakePHP provides deferred task execution.",
"keywords": ["cakephp","queue","deferred tasks","background"],
"homepage": "https://github.com/dereuromark/cakephp-queue",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://www.dereuromark.de",
"role": "Maintainer"
},
{
"name": "Contributors",
"homepage": "https://github.com/dereuromark/cakephp-queue/graphs/contributors",
"role": "Contributor"
}
],
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0.4"
},
"require-dev": {
"friendsofcake/search": "^6.0.0",
"dereuromark/cakephp-tools": "^2.1.3",
"dereuromark/cakephp-ide-helper": "^1.0.0",
"fig-r/psr2r-sniffer": "dev-master"
},
"suggest": {
"friendsofcake/search": "For admin backend and filtering of current jobs.",
"dereuromark/cakephp-tools": "For the QueueEmailTask (if you don't write your own task here). Also for admin backend.",
"dereuromark/cakephp-ide-helper": "For maximum IDE support, especially around createJob() usage."
},
"support": {
"source": "https://github.com/dereuromark/cakephp-queue"
},
"autoload": {
"psr-4": {
"Queue\\": "src/",
"Queue\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"Queue\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/",
"Foo\\": "tests/test_app/plugins/Foo/src/"
}
},
"prefer-stable": true,
"scripts": {
"stan": "phpstan analyse -c tests/phpstan.neon -l 8 src/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 && mv composer.backup composer.json",
"test": "php phpunit.phar",
"test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-8.5.2.phar && mv phpunit-8.5.2.phar phpunit.phar || true",
"cs-check": "phpcs -p -s --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/config/Migrations/ --extensions=php src/ tests/ config/",
"cs-fix": "phpcbf -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/config/Migrations/ --extensions=php src/ tests/ config/"
},
"config": {
"sort-packages": true,
"process-timeout": 600
}
}