-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
42 lines (42 loc) · 1.01 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
{
"name": "mariano/disque-php",
"description": "PHP library for Disque, an in-memory, distributed job queue",
"type": "library",
"keywords": [
"disque",
"job",
"queue"
],
"homepage": "https://github.com/mariano/disque-php",
"license": "MIT",
"authors": [
{
"name": "Mariano Iglesias",
"email": "[email protected]",
"homepage": "http://marianoiglesias.com.ar"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mariano/disque-php/issues",
"source": "https://github.com/mariano/disque-php"
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"scrutinizer/ocular": "~1.1",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"Disque\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Disque\\Test\\": "tests/"
}
}
}