Skip to content

Commit

Permalink
Bump php support to 8.4 (starting from 7.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebln committed Jun 2, 2024
1 parent 4e382a2 commit 4f5a205
Show file tree
Hide file tree
Showing 4 changed files with 311 additions and 113 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-20.04 ]
php: [ '7.2','7.3','7.4','8.0' ]
operating-system: [ ubuntu-22.04 ]
php: [ '7.4','8.0']
name: Build and test on ${{ matrix.php }}
steps:
- name: Checkout repository
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ Intended to follow [«Keep a Changelog»](https://keepachangelog.com/en/)

----

## [1.1.0] - 2024-06-02

### Added

- Supporting PHP until 8.4

### Removed

- PHP Support <7.4

## [1.0.0] - 2021-12-10

### Added
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "ebln/phpstan-factory-mark",
"type": "library",
"description": "Userland marking interface for ebln/phpstan-factory-rule",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "ebln",
"email": "[email protected]"
}
],
"require": {
"php": "7.2 - 8.2"
"php": "7.4 - 8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
Expand All @@ -21,6 +21,11 @@
"Ebln\\PHPStan\\EnforceFactory\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"quality": [
"composer normalize --dry-run",
Expand Down
Loading

0 comments on commit 4f5a205

Please sign in to comment.