Skip to content

Commit 84ba397

Browse files
authored
Merge pull request #1 from ebln/bump-php
Bump php support to 8.4 (starting from 7.4)
2 parents 4e382a2 + 4f5a205 commit 84ba397

File tree

4 files changed

+311
-113
lines changed

4 files changed

+311
-113
lines changed

.github/workflows/buildTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ${{ matrix.operating-system }}
88
strategy:
99
matrix:
10-
operating-system: [ ubuntu-20.04 ]
11-
php: [ '7.2','7.3','7.4','8.0' ]
10+
operating-system: [ ubuntu-22.04 ]
11+
php: [ '7.4','8.0']
1212
name: Build and test on ${{ matrix.php }}
1313
steps:
1414
- name: Checkout repository

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ Intended to follow [«Keep a Changelog»](https://keepachangelog.com/en/)
55

66
----
77

8+
## [1.1.0] - 2024-06-02
9+
10+
### Added
11+
12+
- Supporting PHP until 8.4
13+
14+
### Removed
15+
16+
- PHP Support <7.4
17+
818
## [1.0.0] - 2021-12-10
919

1020
### Added

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "ebln/phpstan-factory-mark",
3-
"type": "library",
43
"description": "Userland marking interface for ebln/phpstan-factory-rule",
54
"license": "MIT",
5+
"type": "library",
66
"authors": [
77
{
88
"name": "ebln",
99
"email": "34722048+ebln@users.noreply.github.com"
1010
}
1111
],
1212
"require": {
13-
"php": "7.2 - 8.2"
13+
"php": "7.4 - 8.4"
1414
},
1515
"require-dev": {
1616
"ergebnis/composer-normalize": "^2.15",
@@ -21,6 +21,11 @@
2121
"Ebln\\PHPStan\\EnforceFactory\\": "src/"
2222
}
2323
},
24+
"config": {
25+
"allow-plugins": {
26+
"ergebnis/composer-normalize": true
27+
}
28+
},
2429
"scripts": {
2530
"quality": [
2631
"composer normalize --dry-run",

0 commit comments

Comments
 (0)