-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "guncha25/drupal-codeception",
"description": "Codeception toolset for Drupal testing.",
"type": "package",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"codeception/codeception": "^5",
"codeception/module-webdriver": "^3 || ^4",
"webflo/drupal-finder": "^1.2",
"fakerphp/faker": "^1.23",
"codeception/module-phpbrowser": "^3",
"codeception/module-asserts": "^3"
},
"require-dev": {
"composer/installers": "^2",
"drupal/core": "^9 || ^10"
},
"license": "GPL-2.0",
"authors": [
{
"name": "Guntis Jakovins",
"email": "guntis.jakovins@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Codeception\\": "src/Codeception"
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}