-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 851 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 851 Bytes
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": "docker-php/behat-docker-extension",
"type": "behat-extension",
"description": "Test a docker infrastructure with Behat",
"license": "MIT",
"keywords": ["docker", "behat", "test", "bdd"],
"authors": [
{
"name": "Joel Wurtz",
"email": "joel.wurtz@gmail.com"
}
],
"require": {
"php": ">=5.4",
"docker-php": "^1.21.0",
"behat/behat": "~3.0,>=3.0.4"
},
"require-dev": {
"phpspec/phpspec": "~2.4"
},
"autoload": {
"psr-4": {
"DockerPHP\\Behat\\DockerExtension": "src/"
}
},
"scripts": {
"test": "",
"test-ci": ""
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}