forked from imbo/behat-api-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
{
"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": "cogo@starzinger.net",
"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": "http://behat-api-extension.readthedocs.io/",
"issues": "https://github.com/imbo/behat-api-extension/issues",
"irc": "irc://irc.freenode.net/imbo"
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"behat/behat": "^3.5",
"guzzlehttp/guzzle": "^6.5",
"beberlei/assert": "^3.2",
"firebase/php-jwt": "^5.0"
},
"require-dev": {
"symfony/process": "^5.0",
"phpunit/phpunit": "^8.5",
"slim/slim": "^4.4",
"slim/psr7": "^1.0",
"tuupola/slim-basic-auth": "^3.2",
"phpstan/phpstan": "^0.12.8"
},
"autoload": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "tests/"
}
},
"scripts": {
"clean": "rm -rf build",
"lint": "for file in `git ls-files '*php'`; do php -l $file; done",
"test:phpunit": "vendor/bin/phpunit",
"test:phpunit:coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"test:behat": "vendor/bin/behat --strict",
"test": [
"@test:phpunit",
"@test:behat"
],
"sa": "vendor/bin/phpstan analyse -l 7 src",
"ci": [
"@lint",
"@sa",
"@test"
],
"dev": "php -S localhost:8080 -t ./features/bootstrap > server.log 2>&1",
"docs": "cd docs; make html"
}
}