-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.39 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
44
45
46
47
48
{
"name": "kirschbaum/drupal-behat-remote-api-driver",
"description": "Driver for remote Behat testing with Drupal",
"license": "MIT",
"authors": [
{
"name": "Alfred Nutile",
"email": "[email protected]"
},
{
"name": "Nathan Kirschbaum",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"symfony/process": ">=2.3",
"symfony/event-dispatcher": ">=2.3",
"guzzle/guzzle": "~3.7",
"vlucas/phpdotenv": "*",
"behat/mink": "1.6.*@dev",
"behat/mink-goutte-driver": "1.1.*@dev",
"behat/mink-selenium2-driver": "1.2.*@dev",
"behat/mink-browserkit-driver": "1.2.*@dev",
"behat/mink-extension": "1.3.*@dev",
"fabpot/goutte": "~1.0",
"drupal/drupal-extension": "*",
"monolog/monolog": "1.12.*@dev"
},
"require-dev": {
"phpunit/phpunit": "~3.0",
"mockery/mockery": "dev-master",
"php-vcr/php-vcr": "1.1.7",
"php-vcr/phpunit-testlistener-vcr": "dev-master"
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-0": {
"Kirschbaum\\DrupalBehatRemoteAPIDriver\\": "lib/"
},
"files": [
"lib/Kirschbaum/DrupalBehatRemoteAPIDriver/Start.php"
]
}
}