forked from dereuromark/cakephp-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.14 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
{
"name": "dereuromark/cakephp-queue",
"type": "cakephp-plugin",
"description": "The Queue plugin for CakePHP provides deferred task execution.",
"keywords": ["cakephp","queue","deferred tasks","background"],
"homepage": "http://github.com/dereuromark/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"
}
],
"require": {
"cakephp/cakephp": "~3.0",
"php": ">=5.4.16"
},
"require-dev": {
"dereuromark/cakephp-tools": "dev-cake3",
"cakephp/migrations": "dev-master"
},
"suggest": {
"dereuromark/cakephp-tools": "For the Email lib and QueueEmailTask. Or write your own task here."
},
"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/TestApp",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"minimum-stability": "dev"
}