-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
40 lines (40 loc) · 1017 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
38
39
40
{
"name": "drupalci/drupalci_testbot",
"description": "Central Script to control drupalci_testbot",
"authors": [
{
"email": "[email protected]",
"name": "Bastian Widmer",
"homepage": "http://bastianwidmer.ch"
}
],
"autoload": {
"psr-0": {
"": "src",
"DrupalCI\\Tests": "tests"
}
},
"bin" : [
"drupalci"
],
"config": {
"bin-dir" : "bin/"
},
"require": {
"symfony/console": "~2.5",
"symfony/finder": "~2.5.3",
"nickschuch/privatetravis": "0.0.2",
"symfony/yaml": "2.5.*",
"symfony/process": "2.5.*",
"doctrine/common": "*.*",
"composer/composer": "1.0.*@dev"
},
"require-dev": {
"phpunit/phpunit": "~3",
"herrera-io/phar-update": "~1.0",
"kherge/box": "~2.4",
"satooshi/php-coveralls": "v0.6.1",
"stage1/docker-php": "@dev"
},
"prefer-stable": true
}