Skip to content

Commit 4e6e2e4

Browse files
committed
Remove Tests on PHP 8.0 and add notice about PHP Support
1 parent ea647d8 commit 4e6e2e4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
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: [ '8.0', '8.1', '8.2', '8.3' ]
11+
php-versions: [ '8.1', '8.2', '8.3', '8.4']
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Setup PHP

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ foreach ($hetznerClient->servers()->all() as $server) {
2020
echo 'ID: '.$server->id.' Name:'.$server->name.' Status: '.$server->status.PHP_EOL;
2121
}
2222
```
23+
### PHP Support
24+
25+
We test on all supported PHP Versions. The library can still work on older versions, however it is no longer actively tested.
2326

2427
### Old Releases: v1.x
2528
[Version 1.x](https://github.com/LKDevelopment/hetzner-cloud-php-sdk/tree/v1) is abandoned and will not receive any new updates or features. V2 was created with Backward Compatibility in mind. So it should work as a drop-in replacement. Therefor it does not give a "Migration to v2"-Guide. It should just work!

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"cloud php library"
1010
],
1111
"require": {
12-
"php": "^7.1|^8.0",
12+
"php": "^8.1",
1313
"ext-json": "*",
1414
"guzzlehttp/guzzle": "^6.3|^7.0",
15-
"illuminate/collections": "^5.5|^v6.18|^7.0|^8.0|^11.0"
15+
"illuminate/collections": "^5.5|^v6.18|^7.0|^8.0|^9.0|^10.0|^11.0"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^7.0|^8.5.5|^9.0",

0 commit comments

Comments
 (0)