-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 978 Bytes
/
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
{
"name": "piteer1/celery-php",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 1000,
"cache-dir": "/tmp/composer-cache",
"cache-files-dir": "/tmp/files",
"cache-repo-dir": "/tmp/repo",
"cache-vcs-dir": "/tmp/vcs",
"cache-files-ttl": 25200,
"cache-files-maxsize": "900MiB"
},
"repositories": [
{
"type": "package",
"package": {
"name": "phpredis/phpredis",
"version": "2.2.3",
"dist": {
"url": "https://github.com/nicolasff/phpredis/zipball/2.2.3",
"type": "zip"
}
}
}
],
"autoload": {
"psr-0": {"Celery\\": "src/"}
},
"require": {
},
"require-dev": {
"phpunit/phpunit": "3.*",
"mockery/mockery": "dev-master@dev",
"phpredis/phpredis": "2.2.3"
}
}