Skip to content

Commit c38434e

Browse files
Removed PHP 8.1 support; added PHP 8.4 support
1 parent 67cd267 commit c38434e

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: ['8.1', '8.2', '8.3']
12-
laravel: ['10.0', '10.48', '11.0', '11.3']
13-
exclude:
14-
- php: '8.1'
15-
laravel: '11.0'
16-
- php: '8.1'
17-
laravel: '11.3'
11+
php: ['8.2', '8.3', '8.4']
12+
laravel: ['10.0', '10.48', '11.0', '11.14']
1813
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1914
steps:
2015
- name: Checkout

Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
- Added the `ProvinceSeeders` registry
88
- Added the `ProvinceSeeder` interface and decorated all existing province seeders with it
99
- Extended the `Countries` seeder so that the list of countries can be simply read using `Countries::all()` and `Countries::byCode($code)`
10+
- Dropped PHP 8.1 support
11+
- Added PHP 8.4 support
1012

1113
## 3.3.2
1214
##### 2024-10-22

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"issues": "https://github.com/artkonekt/address"
1616
},
1717
"require": {
18-
"php": "^8.1",
18+
"php": "^8.2",
1919
"ext-pdo": "*",
2020
"illuminate/database": "^10.0|^11.0",
2121
"illuminate/support": "^10.0|^11.0",

docs/overview.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ within your applications structure.
2222
| 5.8 | 1.0 - 1.2 |
2323
| 6.x | 1.1 - 2.1 |
2424
| 7.x | 1.2 - 2.1 |
25-
| 8.x | 1.3+ |
26-
| 9.x | 2.1+ |
25+
| 8.x | 1.3 - 2.2 |
26+
| 9.x | 2.1 - 2.8 |
2727
| 10.x | 2.4+ |
28+
| 11.x | 3.0+ |

docs/upgrade.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
The new minimal requirements are:
66

7-
- PHP 8.1
7+
- PHP **8.1**: 3.0 - 3.3;
8+
- PHP **8.2**: 3.4+
89
- Laravel 10
910
- Enum 4.1
1011

0 commit comments

Comments
 (0)