Skip to content

Commit d73bcc6

Browse files
authored
feat: Drop PHP 8.0 support (#129)
1 parent c2a89b8 commit d73bcc6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workflows:
99
- test-on-linux:
1010
matrix:
1111
parameters:
12-
php-version: ["8.0", "8.1"]
12+
php-version: ["8.1", "8.2"]
1313
composer-dependencies: ["lowest", "highest"]
1414
- test-on-windows
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Supported PHP versions
1414

15-
This version of the LaunchDarkly SDK is compatible with PHP 8.0 and higher.
15+
This version of the LaunchDarkly SDK is compatible with PHP 8.1 and higher.
1616

1717
## Getting started
1818

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=8.0",
17+
"php": ">=8.1",
1818
"monolog/monolog": "^2.0|^3.0",
1919
"psr/log": "^1.0|^2.0|^3.0"
2020
},
2121
"require-dev": {
22-
"friendsofphp/php-cs-fixer": "^3.12.0",
22+
"friendsofphp/php-cs-fixer": "^3.15.0",
2323
"guzzlehttp/guzzle": "^7",
2424
"kevinrob/guzzle-cache-middleware": "^4.0",
2525
"phpunit/php-code-coverage": "^9",

test-service/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"launchdarkly/server-sdk": "*",
1313
"mikecao/flight": "^2",
1414
"monolog/monolog": "^2",
15-
"php": ">=8.0",
15+
"php": ">=8.1",
1616
"psr/log": "1.*"
1717
},
1818
"autoload": {

0 commit comments

Comments
 (0)