Skip to content

Commit b64d6b1

Browse files
da-masksixlive
andauthored
chore: set minimum php version to 8.2 (#289)
Co-authored-by: TJ Miller <[email protected]>
1 parent f2148ee commit b64d6b1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: .github/workflows/formatting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
phpv: 8.3
11+
phpv: 8.2
1212

1313
jobs:
1414
formatting:

Diff for: .github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
phpv: 8.3
11+
phpv: 8.2
1212

1313
jobs:
1414
phpstan:

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ubuntu-latest]
18-
php: [8.3, 8.4]
18+
php: [8.2, 8.3, 8.4]
1919
laravel: [11.*, 12.*]
2020
stability: [prefer-lowest, prefer-stable]
2121
include:

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^8.3",
18+
"php": "^8.2",
1919
"laravel/framework": "^11.0|^12.0"
2020
},
2121
"config": {

Diff for: rector.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
ReorderMethodsRector::class,
2020
])
2121
->withSets([
22-
LevelSetList::UP_TO_PHP_83,
22+
LevelSetList::UP_TO_PHP_82,
2323
SetList::CODE_QUALITY,
2424
SetList::DEAD_CODE,
2525
SetList::EARLY_RETURN,

0 commit comments

Comments
 (0)