-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (60 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (60 loc) · 1.69 KB
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
{
"name": "friends-of-behat/page-object-extension",
"description": "Provides default classes for Page object pattern in Behat",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Łukasz Chruściel",
"email": "lchrusciel@gmail.com"
},
{
"name": "Kamil Kokot",
"email": "kamil@kokot.me",
"homepage": "https://kamilkokot.com"
},
{
"name": "Mateusz Zalewski",
"email": "mateusz.p.zalewski@gmail.com",
"homepage": "http://mpzalewski.com.pl"
}
],
"require": {
"php": "^8.3",
"behat/mink": "^1.9"
},
"require-dev": {
"behat/behat": "^3.31 || 4.x-dev",
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.0",
"symfony/filesystem": "^7.4 || ^8.0",
"symfony/process": "^7.4 || ^8.0",
"symfony/routing": "^7.4 || ^8.0",
"symfony/yaml": "^7.4 || ^8.0"
},
"suggest": {
"symfony/routing": "Allow better support for PageObject pattern in Symfony applications"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "FriendsOfBehat\\PageObjectExtension\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\FriendsOfBehat\\PageObjectExtension\\": "tests/" }
},
"scripts": {
"test": "behat --no-interaction",
"cs": "php-cs-fixer check --diff",
"cs-fix": "php-cs-fixer fix",
"stan": "phpstan analyse"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}