-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "soulcodex/laravel-behat",
"type": "behat-extension",
"description": "Laravel Extension for easy integration with Behat",
"keywords": [
"laravel",
"behat",
"extension",
"bdd"
],
"homepage": "https://github.com/soulcodex/laravel-behat",
"license": "MIT",
"authors": [
{
"name": "Roberto Garcia",
"email": "[email protected]",
"role": "Owner"
}
],
"autoload": {
"psr-4": {
"Soulcodex\\Behat\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Soulcodex\\Behat\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0|^8.1",
"behat/behat": "^3.0",
"behat/mink-browserkit-driver": "^2.1",
"friends-of-behat/mink-extension": "^2.7",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"symfony/http-kernel": "^7.0",
"symfony/event-dispatcher": "^6.2",
"phpunit/phpunit": "^10.0"
},
"require-dev": {
"marcocesarato/php-conventional-changelog": "^1.16"
},
"scripts": {
"changelog": "conventional-changelog",
"release:patch": "conventional-changelog --patch",
"release:minor": "conventional-changelog --minor",
"release:major": "conventional-changelog --major"
},
"minimum-stability": "dev",
"prefer-stable": true,
"version": "1.0.6"
}