Skip to content

Commit 8e0dabc

Browse files
authored
Add php8 support (#65)
* Add PHP 8 support Signed-off-by: Lukas Kämmerling <[email protected]>
1 parent 07616bb commit 8e0dabc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
operating-system: [ubuntu-latest]
11-
php-versions: ['7.1', '7.2', '7.3', '7.4']
11+
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0']
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Setup PHP

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Add support for creating Certificates
55
* Add support for creating resources with labels
66
* Allow setting of "null" `$dnsPtr` value on `changeReverseDNS` of FloatingIP & Server, this resets the DNS PTR to the default value
7+
* Support PHP 8.0
78

89
## 2.2.2 (05.10.2020)
910

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99
"cloud php library"
1010
],
1111
"require": {
12-
"php": ">=7.1.0",
12+
"php": "^7.1|^8.0",
1313
"ext-json": "*",
1414
"guzzlehttp/guzzle": "^6.3|^7.0",
1515
"tightenco/collect": "^5.5|^v6.18|^7.0"
1616
},
1717
"require-dev": {
18-
"phpunit/phpunit": "^7.0|^8.5.5",
19-
"phpstan/phpstan": "^0.12.43",
20-
"brianium/paratest": "3.* || 4.*"
18+
"phpunit/phpunit": "^7.0|^8.5.5|^9.0",
19+
"phpstan/phpstan": "^0.12.43"
2120
},
2221
"license": "MIT",
2322
"authors": [

0 commit comments

Comments
 (0)