forked from michalochman/SilverStripeExtension
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.43 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "silverstripe/behat-extension",
"type": "behat-extension",
"description": "SilverStripe framework extension for Behat",
"keywords": [
"framework",
"web",
"bdd",
"silverstripe"
],
"homepage": "http://silverstripe.org",
"license": "MIT",
"authors": [
{
"name": "Michal Ochman",
"email": "ochman.d.michal@gmail.com"
},
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
}
],
"require": {
"php": "^8.3",
"phpunit/phpunit": "^11.3",
"squizlabs/php_codesniffer": "^3.7",
"behat/behat": "^3.16",
"behat/mink": "^1.12",
"friends-of-behat/mink-extension": "^2.7",
"silverstripe/mink-facebook-web-driver": "^2",
"silverstripe/template-engine": "^1",
"symfony/dom-crawler": "^7.0",
"silverstripe/testsession": "^4",
"silverstripe/framework": "^6",
"silverstripe/supported-modules": "^2",
"symfony/finder": "^7.0"
},
"autoload": {
"psr-4": {
"SilverStripe\\BehatExtension\\": "src/",
"SilverStripe\\BehatExtension\\Tests\\": "tests/php/"
}
},
"extra": [],
"bin": [
"bin/behat-ss"
],
"scripts": {
"lint": "phpcs --standard=PSR2 -n src/ tests/php/"
},
"prefer-stable": true,
"minimum-stability": "dev"
}