-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
36 lines (35 loc) · 1.04 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
{
"name": "friends-of-behat/exclude-specifications-extension",
"description": "Allows to exclude features or scenarios in Behat tests.",
"license": "MIT",
"authors": [
{
"name": "Mateusz Zalewski",
"homepage": "http://mpzalewski.com.pl"
}
],
"require": {
"php": "^7.4 || ^8.0",
"behat/behat": "^3.4",
"symfony/dependency-injection": "^5.3 || ^6.0"
},
"require-dev": {
"friends-of-behat/test-context": "^1.3",
"phpspec/phpspec": "^7.0"
},
"autoload": {
"psr-4": { "FriendsOfBehat\\ExcludeSpecificationsExtension\\": "src/" }
},
"autoload-dev": {
"psr-4" : { "spec\\FriendsOfBehat\\ExcludeSpecificationsExtension\\": "spec/" }
},
"scripts": {
"analyse": [
"@composer validate --ansi --strict"
],
"test": [
"vendor/bin/phpspec run --format dot -vvv --no-interaction",
"vendor/bin/behat -f progress --strict -vvv --no-interaction --colors"
]
}
}