forked from imbo/behat-api-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
{
"name": "imbo/behat-api-extension",
"type": "library",
"description": "API extension for Behat",
"keywords": ["behat", "testing", "api", "REST", "http"],
"homepage": "https://github.com/imbo/behat-api-extension",
"license": "MIT",
"authors": [{
"name": "Christer Edvartsen",
"email": "[email protected]",
"homepage": "https://github.com/christeredvartsen"
}, {
"name": "Contributors",
"homepage": "https://github.com/imbo/behat-api-extension/graphs/contributors"
}],
"support": {
"source": "https://github.com/imbo/behat-api-extension",
"docs": "https://github.com/imbo/behat-api-extension",
"issues": "https://github.com/imbo/behat-api-extension/issues",
"irc": "irc://irc.freenode.net/imbo"
},
"require": {
"php": ">=5.6",
"behat/behat": "^3.0",
"guzzlehttp/guzzle": "^6.0",
"beberlei/assert": "^2.1"
},
"require-dev": {
"silex/silex": "^2.0",
"symfony/security": "^3.1",
"symfony/process": "^3.1",
"phpunit/phpunit": "^5.5"
},
"autoload": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.0-dev"
}
},
"scripts": {
"clean": "rm -rf build",
"lint": "for file in `git ls-files '*php'`; do php -l $file; done",
"test": [
"vendor/bin/phpunit",
"vendor/bin/behat --strict"
],
"start-server": "php -S localhost:8080 -t ./features/bootstrap > server.log 2>&1 &"
}
}