Skip to content

Commit 32055ea

Browse files
Made PHP8.1 minimum version
Signed-off-by: Tom Wright <tom@inflatablecookie.com>
1 parent 59f0bd1 commit 32055ea

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/integrate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: "Set up PHP"
2020
uses: "shivammathur/setup-php@v2"
2121
with:
22-
php-version: "8.0"
22+
php-version: "8.1"
2323
extensions: "${{ env.PHP_EXTENSIONS }}"
2424
ini-values: "post_max_size=256M"
2525

@@ -60,9 +60,9 @@ jobs:
6060
strategy:
6161
matrix:
6262
php-version:
63-
- "8.0"
6463
- "8.1"
6564
- "8.2"
65+
- "8.3"
6666
steps:
6767
- name: "Set up PHP"
6868
uses: "shivammathur/setup-php@v2"
@@ -101,7 +101,7 @@ jobs:
101101
- name: "Set up PHP"
102102
uses: "shivammathur/setup-php@v2"
103103
with:
104-
php-version: "8.0"
104+
php-version: "8.1"
105105
extensions: "${{ env.PHP_EXTENSIONS }}"
106106
ini-values: "post_max_size=256M"
107107

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Made PHP8.1 minimum version
2+
13
## v0.3.4 (2023-09-26)
24
* Converted phpstan doc comments to generic
35
* Migrated to use effigy in CI workflow

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "decodelabs/fluidity",
33
"description": "Tools for creating fluent interfaces",
44
"type": "library",
5-
"keywords": ["library", "tools", "fluent", "fluid"],
5+
"keywords": [ "library", "tools", "fluent", "fluid" ],
66
"license": "MIT",
7-
"authors": [{
8-
"name": "Tom Wright",
9-
"email": "tom@inflatablecookie.com"
10-
}],
7+
"authors": [ {
8+
"name": "Tom Wright",
9+
"email": "tom@inflatablecookie.com"
10+
} ],
1111
"require": {
12-
"php": "^8.0"
12+
"php": "^8.1"
1313
},
1414
"require-dev": {
1515
"decodelabs/phpstan-decodelabs": "^0.6"

0 commit comments

Comments
 (0)