Skip to content

Commit e5006c2

Browse files
authored
Merge pull request #32 from 0x46616c6b/support-php8
support php ^8.0
2 parents 4e4ccdd + 050883d commit e5006c2

File tree

3 files changed

+551
-242
lines changed

3 files changed

+551
-242
lines changed

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
php-versions: ['7.2', '7.3', '7.4']
11+
php-versions: ['7.3', '7.4', '8.0']
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: shivammathur/setup-php@v2

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"psr-4": { "": "src/" }
1313
},
1414
"require": {
15-
"php": "^7.2.5|^7.3|^7.4",
16-
"guzzlehttp/guzzle": "~7.1"
15+
"php": "^7.3|^7.4|^8.0",
16+
"guzzlehttp/guzzle": "~7.2"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "~8.5",
20-
"behat/behat": "^3.3"
20+
"behat/behat": "^3.8"
2121
}
2222
}

0 commit comments

Comments
 (0)