Skip to content

Commit e9fac59

Browse files
authored
added laravel 12 support (#15)
1 parent a98267f commit e9fac59

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,39 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: [7.4, '8.0', 8.1, 8.2, 8.3]
14-
laravel: [8, 9, 10, 11]
13+
php: [7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
14+
laravel: [8, 9, 10, 11, 12]
1515
exclude:
1616
- php: 7.4
1717
laravel: 9
1818
- php: 7.4
1919
laravel: 10
2020
- php: 7.4
2121
laravel: 11
22+
- php: 7.4
23+
laravel: 12
2224
- php: '8.0'
2325
laravel: 10
2426
- php: '8.0'
2527
laravel: 11
28+
- php: '8.0'
29+
laravel: 12
2630
- php: 8.1
2731
laravel: 11
32+
- php: 8.1
33+
laravel: 12
2834
- php: 8.2
2935
laravel: 8
3036
- php: 8.3
3137
laravel: 8
3238
- php: 8.3
3339
laravel: 9
40+
- php: 8.4
41+
laravel: 8
42+
- php: 8.4
43+
laravel: 9
44+
- php: 8.4
45+
laravel: 10
3446

3547
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3648

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"require": {
1818
"php": "^7.4|^8.0",
1919
"blade-ui-kit/blade-icons": "^1.1",
20-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
20+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
2121
},
2222
"require-dev": {
23-
"codeat3/blade-icon-generation-helpers": "^0.8",
23+
"codeat3/blade-icon-generation-helpers": "^0.10",
2424
"codeat3/phpcs-styles": "^1.0",
25-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
25+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
2626
"phpunit/phpunit": "^9.0|^10.5|^11.0"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)