-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ibexa/behat",
"description": "Ibexa Behat",
"license": "(GPL-2.0-only or proprietary)",
"replace": {
"ezsystems/behatbundle": "*"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"behat/behat": "^3.13",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.4",
"bex/behat-screenshot": "^2.1",
"dmore/behat-chrome-extension": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"ezsystems/behat-screenshot-image-driver-cloudinary": "^1.1@dev",
"ibexa/core": "~5.0.0@dev",
"behat/mink": "^1.11",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"friends-of-behat/mink-extension": "^2.4",
"friends-of-behat/symfony-extension": "^2.1",
"fakerphp/faker": "^1.17",
"guzzlehttp/psr7": "^1.6.1",
"liuggio/fastest": "^1.11",
"php-http/client-common": "^2.1",
"phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/lock": "^5.0",
"symfony/stopwatch": "^5.2",
"symfony/http-kernel": "^5.0",
"symfony/process": "^5.4",
"symfony/property-access": "^5.0",
"symfony/yaml": "^5.0",
"psy/psysh": "^0.10.8",
"oleg-andreyev/mink-phpwebdriver": "^1.2.1",
"oleg-andreyev/mink-phpwebdriver-extension": "^1.0",
"symfony/form": "^5.4"
},
"require-dev": {
"ibexa/code-style": "~2.0.0",
"friendsofphp/php-cs-fixer": "^3.0",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/doctrine-schema": "~5.0.0@dev",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"symfony/phpunit-bridge": "^6.3"
},
"autoload": {
"psr-4": {
"Ibexa\\Behat\\": "src/lib/",
"Ibexa\\Bundle\\Behat\\": "src/bundle/",
"Ibexa\\Contracts\\Behat\\": "src/contracts/"
}
},
"conflict": {
"instaclick/php-webdriver": "1.4.12"
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Behat\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\Behat\\": "tests/bundle/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse",
"test": "phpunit -c phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"bin": [
"bin/ibexabehat"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
}
}