Skip to content

Commit d042412

Browse files
committed
feat(phpstan): Drop support php <= 7.3
1 parent 0578f22 commit d042412

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
16+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Setup PHP
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2
3333
with:
34-
php-version: '8.2'
34+
php-version: '8.3'
3535
- name: Install dependencies
3636
run: composer update --no-interaction --no-progress --ansi
3737
- name: Run coding standards check
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup PHP
4646
uses: shivammathur/setup-php@v2
4747
with:
48-
php-version: '8.2'
48+
php-version: '8.3'
4949
- name: Install dependencies
5050
run: composer update --no-interaction --no-progress --ansi
5151
- name: Run static analysis
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-latest
6868
strategy:
6969
matrix:
70-
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
70+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
7171
dependency-version: [prefer-lowest, prefer-stable]
7272
steps:
7373
- uses: actions/checkout@v4

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2 || ^8.0",
14+
"php": "^7.4 || ^8.0",
1515
"php-parallel-lint/php-console-highlighter": "^0.3 || ^0.4 || ^0.5 || ^1.0",
1616
"phpstan/phpstan": "^0.12 || ^1.0 || ^2.0"
1717
},

0 commit comments

Comments
 (0)