Skip to content

Commit

Permalink
Drop PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Jan 18, 2025
1 parent cb4c2e5 commit c5a3d95
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lint

on:
push:
branches: [master]
branches: [master, vNext]
pull_request:

jobs:
Expand All @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
php:
- 8.1
- 8.3

name: Lint code (PHP ${{ matrix.php }})

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests

on:
push:
branches: [master, v4]
branches: [master, vNext]
pull_request:

jobs:
Expand All @@ -11,13 +11,14 @@ jobs:
strategy:
matrix:
php:
- '8.4'
- '8.3'
- '8.2'
- '8.1'
- '8.0'
deps:
- highest
include:
- {php: '8.0', deps: lowest}
- {php: '8.1', deps: lowest}
- {php: '8.1', deps: dingo}

name: Tests (PHP ${{ matrix.php }} - ${{ matrix.deps }})
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=8.0",
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
Expand Down
2 changes: 1 addition & 1 deletion composer.lowest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=8.0",
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
Expand Down

0 comments on commit c5a3d95

Please sign in to comment.