-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.09 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "doppar/queue",
"description": "A lightweight queue management library for the Doppar framework.",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/doppar/queue/issues",
"source": "https://github.com/doppar/queue"
},
"authors": [
{
"name": "Mahedi Hasan",
"email": "mahedy150101@gmail.com"
}
],
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^12.1.5",
"doppar/framework": "3.*"
},
"autoload": {
"psr-4": {
"Doppar\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Doppar\\Queue\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"doppar": {
"providers": [
"Doppar\\Queue\\QueueServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"require": {
"opis/closure": "^4.4"
}
}