-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.33 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.33 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": "vpg/disturb",
"description": "Distributed Workflow Processor built on top of Apache Kafka",
"type": "library",
"minimum-stability":"dev",
"authors": [
{
"name": "Jerome Bourgeais",
"email": "jbourgeais@voyageprive.com"
},
{
"name": "Alexandre Defretin",
"email": "adefretin@voyageprive.com"
},
{
"name": "Matthieu Ventura",
"email": "mventura@voyageprive.com"
},
{
"name": "Thomas Pellegatta",
"email": "tpellegatta@voyageprive.com"
},
{
"name": "Maxime Brenguier",
"email": "mbrenguier@voyageprive.com"
}
],
"bin": ["bin/disturb-manager", "bin/disturb-step"],
"autoload":{
"psr-4":{
"Vpg\\Disturb\\" : "Library/"
}
},
"require": {
"elasticsearch/elasticsearch": "~6.0.1",
"php": ">=7.0",
"ext-phalcon": "~3.0"
},
"require-dev": {
"phalcon/devtools":"3.0.*",
"phpunit/phpunit": "6.*",
"squizlabs/php_codesniffer": "3.*",
"php-coveralls/php-coveralls": "^2.0@dev",
"codacy/coverage": "dev-master",
"techpivot/phalcon-ci-installer": "~1.0",
"codeclimate/php-test-reporter": "^0.3.0@dev"
}
}