Skip to content

Commit b0bba49

Browse files
authored
Merge pull request #70 from bumpcore/69-1x-laravel-12-support
Resolves #69
2 parents 7fda81a + 6b6b13c commit b0bba49

3 files changed

Lines changed: 14 additions & 7 deletions

File tree

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@ on:
77
- '*.x'
88
pull_request:
99

10+
1011
jobs:
1112
run:
1213
runs-on: ubuntu-latest
1314
strategy:
1415
matrix:
15-
php: [8.1, 8.2, 8.3]
16-
laravel: [10, 11]
16+
php: [ 8.1, 8.2, 8.3, 8.4 ]
17+
laravel: [ 10, 11, 12 ]
1718
exclude:
1819
- php: '8.1'
1920
laravel: 11
21+
- php: '8.1'
22+
laravel: 12
23+
- php: '8.4'
24+
laravel: 10
2025

2126
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2227

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ Editor.php is a package designed to assist in parsing and manipulating the outpu
3737
# Version Table
3838
| Editor.php | Laravel | PHP |
3939
| --- | --- | --- |
40-
| 1.x | 10.x ~ 11.x | 8.1 ~ 8.3 |
40+
| 1.x | 10.x | 8.1 ~ 8.3 |
41+
| 1.x | 11.x | 8.2 ~ 8.4 |
42+
| 1.x | 12.x | 8.2 ~ 8.4 |
4143

4244
# Quick Start
4345

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
],
2323
"require": {
2424
"php": "^8.1",
25-
"illuminate/support": "^10.0|^11.0",
26-
"illuminate/validation": "^10.0|^11.0",
25+
"illuminate/support": "^10.0|^11.0|^12.0",
26+
"illuminate/validation": "^10.0|^11.0|^12.0",
2727
"fakerphp/faker": "^1.21"
2828
},
2929
"extra": {
@@ -34,8 +34,8 @@
3434
}
3535
},
3636
"require-dev": {
37-
"pestphp/pest": "^1.22.4|^2.0",
38-
"orchestra/testbench": "^8.0|^9.0",
37+
"pestphp/pest": "^1.22.4|^2.0|^3.0",
38+
"orchestra/testbench": "^8.0|^9.0|^10.0",
3939
"friendsofphp/php-cs-fixer": "^3.14.4",
4040
"phpstan/phpstan": "^1.10"
4141
},

0 commit comments

Comments
 (0)