Skip to content

Commit

Permalink
feat: change minimal required PHP version to 8.1, because older versi…
Browse files Browse the repository at this point in the history
…ons have reached EOL

BREAKING CHANGE: >=8.1 PHP is required now for this SDK
  • Loading branch information
TheUnderScorer committed Mar 20, 2024
1 parent ed1f294 commit 0fd57d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php_version: [ "7.3", "7.4", "8.0", "8.1", "8.2" ]
php_version: [ "8.1", "8.2", "8.3" ]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,9 @@ This PHP package is automatically generated by the [Swagger Codegen](https://git

This library supports the following PHP implementations:

- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 7.4
- PHP 8.0
- PHP 8.1
- PHP 8.2
- PHP 8.3

We currently don't support external PHP Runtimes like:

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"require": {
"php": ">=7.1",
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand Down
6 changes: 1 addition & 5 deletions template/README.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,9 @@ This PHP package is automatically generated by the [Swagger Codegen](https://git

This library supports the following PHP implementations:

- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 7.4
- PHP 8.0
- PHP 8.1
- PHP 8.2
- PHP 8.3

We currently don't support external PHP Runtimes like:

Expand Down
2 changes: 1 addition & 1 deletion template/composer.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
],
"require": {
"php": ">=7.1",
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand Down

0 comments on commit 0fd57d4

Please sign in to comment.