-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
72 lines (72 loc) · 1.9 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
68
69
70
71
72
{
"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": "http://behat-api-extension.readthedocs.io/",
"issues": "https://github.com/imbo/behat-api-extension/issues"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"beberlei/assert": "^3.3",
"behat/behat": "^3.8",
"firebase/php-jwt": "^6.4",
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"alexeyshockov/guzzle-psalm-plugin": "^1.0",
"imbo/imbo-coding-standard": "^2.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18.4",
"slim/psr7": "^1.3",
"slim/slim": "^4.7",
"symfony/process": "^6.2",
"tuupola/slim-basic-auth": "^3.3",
"vimeo/psalm": "^5.8"
},
"autoload": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\BehatApiExtension\\": "tests/"
}
},
"scripts": {
"ci": [
"@phpunit",
"@behat",
"@sa",
"@cs"
],
"test": [
"@phpunit",
"@behat"
],
"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
}
}