-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.26 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": "bex/behat-skip-tests",
"type": "library",
"description": "Extension for behat to enable skipping tests without excluding them from the output",
"keywords": ["tdd","bdd","behat"],
"homepage": "https://github.com/tkotosz/behat-skip-tests",
"license": "MIT",
"authors": [
{
"name": "Tibor Kotosz",
"email": "kotosy@gmail.com",
"homepage": "https://github.com/tkotosz",
"role": "Developer"
}
],
"require": {
"php": ">=5.4",
"behat/behat": "^3.0.0"
},
"require-dev": {
"phpspec/phpspec": "2.4.0-alpha2",
"bex/behat-test-runner": "dev-master",
"jakoch/phantomjs-installer": "^1.9.8",
"behat/mink-selenium2-driver": "^1.3.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/elvetemedve/behat-test-runner"
}
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"": "src"
}
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}