Skip to content

Commit 9836192

Browse files
chore: Add latest versions of PHP to CI (#227)
Co-authored-by: Matthew Keeler <mkeeler@launchdarkly.com>
1 parent 97792fb commit 9836192

File tree

6 files changed

+623
-14
lines changed

6 files changed

+623
-14
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Run CI
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [main]
55
paths-ignore:
6-
- '**.md' # Do not need to run CI for markdown changes.
6+
- "**.md" # Do not need to run CI for markdown changes.
77
pull_request:
8-
branches: [ main ]
8+
branches: [main]
99
paths-ignore:
10-
- '**.md'
10+
- "**.md"
1111

1212
jobs:
1313
linux-build:
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php-version: [8.1, 8.2]
25+
php-version: [8.1, 8.2, 8.3, 8.4]
2626
use-lowest-dependencies: [true, false]
2727

2828
env:
@@ -43,8 +43,9 @@ jobs:
4343
runs-on: windows-latest
4444

4545
strategy:
46+
fail-fast: false
4647
matrix:
47-
php-version: ['8.1', '8.2']
48+
php-version: ["8.1", "8.2", "8.3", "8.4"]
4849

4950
env:
5051
LD_INCLUDE_INTEGRATION_TESTS: 1

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
"ramsey/uuid": "^4.7"
2222
},
2323
"require-dev": {
24-
"friendsofphp/php-cs-fixer": "^3.15.0",
24+
"friendsofphp/php-cs-fixer": "^3.80.0",
2525
"guzzlehttp/guzzle": "^7",
2626
"kevinrob/guzzle-cache-middleware": "^4.0",
2727
"phpunit/php-code-coverage": "^9",
2828
"phpunit/phpunit": "^9",
29-
"vimeo/psalm": "^5.15"
29+
"vimeo/psalm": "^6.13.1"
3030
},
3131
"suggest": {
3232
"guzzlehttp/guzzle": "(^6.3 | ^7) Required when using GuzzleEventPublisher or the default FeatureRequester",

0 commit comments

Comments
 (0)