Skip to content

Commit 45f2390

Browse files
authored
Merge pull request #2 from rtraselbd/main
Minimum PHP version requirements to 8.2
2 parents 8d3190a + fadc7db commit 45f2390

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.4'
21+
php-version: '8.2'
2222
coverage: none
2323

2424
- name: Install composer dependencies

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: true
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
24-
php: [8.4, 8.5]
24+
php: [8.2, 8.3, 8.4, 8.5]
2525
laravel: [12.*, 11.*]
2626
stability: [prefer-lowest, prefer-stable]
2727
include:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
],
3030
"require": {
31-
"php": "^8.4",
31+
"php": "^8.2",
3232
"spatie/laravel-package-tools": "^1.16",
3333
"illuminate/contracts": "^11.0||^12.0"
3434
},
@@ -37,9 +37,9 @@
3737
"laravel/pint": "^1.14",
3838
"nunomaduro/collision": "^8.8",
3939
"orchestra/testbench": "^10.0.0||^9.0.0",
40-
"pestphp/pest": "^4.0",
41-
"pestphp/pest-plugin-arch": "^4.0",
42-
"pestphp/pest-plugin-laravel": "^4.0",
40+
"pestphp/pest": "^3.0||^4.0",
41+
"pestphp/pest-plugin-arch": "^3.0||^4.0",
42+
"pestphp/pest-plugin-laravel": "^3.0||^4.0",
4343
"phpstan/extension-installer": "^1.4",
4444
"phpstan/phpstan-deprecation-rules": "^2.0",
4545
"phpstan/phpstan-phpunit": "^2.0"

0 commit comments

Comments
 (0)