Skip to content

Commit 7bafcc9

Browse files
authored
Merge pull request #4 from Codeception/php8
Support PHP 8
2 parents 92cd354 + 7226440 commit 7bafcc9

File tree

5 files changed

+9
-203
lines changed

5 files changed

+9
-203
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4]
16+
php: [7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v1
20+
uses: actions/checkout@v2
2121

2222
- name: Setup PHP
23-
uses: shivammathur/setup-php@v1
23+
uses: shivammathur/setup-php@v2
2424
with:
2525
php-version: ${{ matrix.php }}
26-
extensions: mbstring, php-xml, ext-dom, mongodb
26+
extensions: mbstring, xml, dom, mongodb
2727
tools: pecl
2828
coverage: none
29+
env:
30+
fail-fast: true
2931

3032
- name: Validate composer.json and composer.lock
3133
run: composer validate

Robofile.php

Lines changed: 0 additions & 21 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@
1313
"minimum-stability": "RC",
1414

1515
"require": {
16-
"php": ">=5.6.0 <8.0",
17-
"codeception/codeception": "4.0.x-dev | ^4.0"
18-
},
19-
"require-dev": {
20-
"codeception/util-robohelpers": "dev-master"
16+
"php": ">=5.6.0 <9.0",
17+
"codeception/codeception": "^4.0"
2118
},
2219
"autoload":{
2320
"classmap": ["src/"]

documentation.md

Lines changed: 0 additions & 172 deletions
This file was deleted.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ composer require --dev "codeception/module-mongodb"
1010

1111
## Documentation
1212

13-
<a href="documentation.md">Look at documentation.md file</a>
13+
<a href="https://codeception.com/docs/modules/MongoDb">Module documentation</a>

0 commit comments

Comments
 (0)