-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "bazilio/yii2-async",
"description": "Provides translucent api for moving large tasks out of request context",
"license": "MIT",
"type": "yii2-extension",
"authors": [
{
"name": "Vasily Ostanin",
"email": "bazilio91@gmail.com"
}
],
"minimum-stability": "alpha",
"keywords": ["yii2", "async", "amqp", "rabbitmq", "tasks", "redis", "mysql"],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"yiisoft/yii2-codeception": "*",
"codeception/codeception": "2.0.*",
"pdezwart/php-amqp": "dev-master",
"yiisoft/yii2-redis": "*",
"kriswallsmith/spork": "dev-master"
},
"autoload": {
"psr-4": {
"bazilio\\async\\": ""
}
},
"repositories": [{
"type": "package",
"package": {
"name": "pdezwart/php-amqp",
"version": "dev-master",
"source": {
"url": "https://github.com/pdezwart/php-amqp",
"type": "git",
"reference": "origin/master"
}
}
}]
}