-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.82 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
{
"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.4 || ^8.0",
"ext-json": "*",
"beberlei/assert": "^3.3",
"behat/behat": "^3.8",
"firebase/php-jwt": "^6.0",
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"alexeyshockov/guzzle-psalm-plugin": "^0.3.1",
"imbo/imbo-coding-standard": "^2.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"slim/psr7": "^1.3",
"slim/slim": "^4.7",
"symfony/process": "^5.2",
"tuupola/slim-basic-auth": "^3.3",
"vimeo/psalm": "^4.7"
},
"autoload": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "tests/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"phpunit:coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"behat": "vendor/bin/behat --strict",
"sa": "vendor/bin/psalm",
"cs": "php-cs-fixer fix --dry-run --diff",
"dev": "php -S localhost:8080 -t ./features/bootstrap > server.log 2>&1",
"docs": "cd docs; make html"
},
"config": {
"sort-packages": true
}
}