forked from rgoro/cakephp-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.52 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
{
"name": "pablohaedo/cakephp-queue",
"type": "cakephp-plugin",
"description": "The Queue plugin for CakePHP provides deferred task execution. This is a MongoDB implementation.",
"keywords": ["cakephp","queue","deferred tasks","background","mongodb"],
"homepage": "http://github.com/rgoro/cakephp-queue",
"license": "MIT",
"authors": [
{
"name": "Pablo Haedo",
"homepage": "https://github.com/pablohaedo",
"role": "Contributor"
},
{
"name": "Román Gorojovsky Sánchez",
"homepage": "https://github.com/rgoro",
"role": "Contributor"
},
{
"name": "Mark Scherer",
"homepage": "http://www.dereuromark.de",
"role": "Contributor"
},
{
"name": "David Yell",
"homepage": "https://github.com/davidyell",
"role": "Contributor"
}
],
"require": {
"cakephp/cakephp": "^3.2",
"php": ">=5.6",
"lewestopher/cakephp-monga": "^0.5.0"
},
"require-dev": {
"cakephp/migrations": "^1.0",
"dereuromark/cakephp-tools": "^1.2",
"fig-r/psr2r-sniffer": "dev-master"
},
"conflict": {
"dereuromark/cakephp-queue": "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/rgoro/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"
}
}
}