Skip to content

Commit 2dde51c

Browse files
committed
fix(build): allow php8
1 parent 5501414 commit 2dde51c

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/
22
composer.lock
33
vendor/
4-
core/
4+
core/
5+
modules/

composer.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@
99
}
1010
],
1111
"require": {
12-
"codeception/codeception": "^4.0",
13-
"fzaninotto/faker": "^1.8",
14-
"codeception/module-webdriver": "^1.1",
12+
"codeception/codeception": "^4.0 || ^5.0",
13+
"codeception/module-webdriver": "*",
1514
"webflo/drupal-finder": "^1.2",
16-
"drupal/devel": "^4.0"
15+
"drupal/devel": "^4"
1716
},
1817
"require-dev": {
1918
"composer/installers": "^1",
20-
"drupal/core": "^8"
19+
"drupal/core": "^8 || ^9 || ^10"
20+
},
21+
"suggest" :{
22+
"fzaninotto/faker": "^1.9"
2123
},
2224
"license": "GPL-2.0",
2325
"authors": [
@@ -31,5 +33,10 @@
3133
"psr-4": {
3234
"Codeception\\": "src/Codeception"
3335
}
36+
},
37+
"config": {
38+
"allow-plugins": {
39+
"composer/installers": true
40+
}
3441
}
3542
}

0 commit comments

Comments
 (0)