forked from justinyost/cakephp-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.8 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
{
"name": "admindotnu/cakephp-queue",
"type": "cakephp-plugin",
"description": "The Queue plugin for CakePHP provides deferred task execution, forked to support SQLite.",
"keywords": ["cakephp","queue","deferred tasks","background"],
"homepage": "http://github.com/admindotnu/cakephp-queue",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"homepage": "http://www.dereuromark.de",
"role": "Contributor"
},
{
"name": "David Yell",
"homepage": "https://github.com/davidyell",
"role": "Contributor"
},
{
"name": "Justin Yost",
"homepage": "https://github.com/justinyost",
"role": "Contributor"
}
],
"require": {
"cakephp/cakephp": "^3.2",
"php": ">=5.5"
},
"require-dev": {
"cakephp/migrations": "^1.0",
"dereuromark/cakephp-tools": "^1.2",
"fig-r/psr2r-sniffer": "dev-master"
},
"suggest": {
"dereuromark/cakephp-tools": "For the Email lib and QueueEmailTask. Or write your own task here. Also for admin backend."
},
"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",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"test": "php phpunit.phar",
"test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-5.7.phar && mv phpunit-5.7.phar phpunit.phar || true",
"cs-check": "phpcs -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/cakephp-queue/vendor/,/tmp/,/logs/,/config/Migrations/ --extensions=php ./",
"cs-fix": "phpcbf -v --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/cakephp-queue/vendor/,/tmp/,/logs/,/config/Migrations/ --extensions=php ./"
}
}