forked from ezsystems/BehatBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (56 loc) · 1.63 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
{
"name": "ezsystems/behatbundle",
"description": "Behat bundle for help testing eZ Bundles and projects",
"license": "GPL-2.0",
"authors": [
{
"name": "eZ Publish dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/BehatBundle"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"fzaninotto/faker": "^1.8",
"behat/behat": "^3.5",
"behat/mink": "^1.7",
"behat/mink-selenium2-driver": "^1.3",
"behat/symfony2-extension": "^2.1",
"behat/mink-extension": "^2.3",
"symfony/property-access": "^4.3",
"symfony/yaml": "^4.3",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/console": "^4.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.15.0",
"phpunit/phpunit": "^7.0",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"EzSystems\\BehatBundle\\": "src/bundle/",
"EzSystems\\Behat\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Behat\\Test\\": "tests/"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-master": "8.0.x-dev",
"dev-tmp_ci_branch": "8.0.x-dev"
}
},
"bin": ["bin/ezbehat"]
}