-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 883 Bytes
/
composer.json
File metadata and controls
35 lines (34 loc) · 883 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
{
"name": "truffo/html-basic-test",
"license": "MIT",
"description": "Basic HTML test",
"require": {
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"behat/mink-zombie-driver": "^1.4",
"phpunit/phpunit": "^5.0"
},
"authors": [{
"name": "Sylvain FIX",
"email": "sylvain.fix@gmail.com"
},
{
"name": "Léo Podechard",
"email": "leo.podechard@gmail.com"
}
],
"autoload": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"clean": "rm -rf tmp/* && rm -rf build/*",
"seo": "./bin/phpunit -c phpunit.dist.xml --group seo",
"w3c": "./bin/phpunit -c phpunit.dist.xml --group w3c"
},
"config": {
"bin-dir": "./bin"
}
}