forked from dereuromark/cakephp-queue
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.1 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "symphosize/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/curtk/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.1",
"php": ">=5.4.16"
},
"require-dev": {
"dereuromark/cakephp-tools": "dev-master",
"cakephp/migrations": "~1.0"
},
"suggest": {
"dereuromark/cakephp-tools": "For the Email lib and QueueEmailTask. Or write your own task here."
},
"support": {
"source": "https://github.com/curtk/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"
}
}
}