Skip to content

Commit d0bbb82

Browse files
authored
laravel 11 support (#14)
1 parent 80a56f0 commit d0bbb82

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Tests
22

33
on:
4-
push:
54
pull_request:
65

76
jobs:
@@ -11,17 +10,27 @@ jobs:
1110
strategy:
1211
fail-fast: true
1312
matrix:
14-
php: [7.4, '8.0', 8.1, 8.2]
15-
laravel: [8, 9, 10]
13+
php: [7.4, '8.0', 8.1, 8.2, 8.3]
14+
laravel: [8, 9, 10, 11]
1615
exclude:
1716
- php: 7.4
1817
laravel: 9
1918
- php: 7.4
2019
laravel: 10
20+
- php: 7.4
21+
laravel: 11
2122
- php: '8.0'
2223
laravel: 10
24+
- php: '8.0'
25+
laravel: 11
26+
- php: 8.1
27+
laravel: 11
2328
- php: 8.2
2429
laravel: 8
30+
- php: 8.3
31+
laravel: 8
32+
- php: 8.3
33+
laravel: 9
2534

2635
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2736

@@ -43,5 +52,4 @@ jobs:
4352
composer update --prefer-dist --no-interaction --no-progress
4453
4554
- name: Execute tests
46-
run: vendor/bin/phpunit --verbose
47-
55+
run: vendor/bin/phpunit

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
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"
20+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
2121
},
2222
"require-dev": {
23-
"codeat3/blade-icon-generation-helpers": "^0.3",
23+
"codeat3/blade-icon-generation-helpers": "^0.8",
2424
"codeat3/phpcs-styles": "^1.0",
25-
"orchestra/testbench": "^6.0|^7.0|^8.0",
26-
"phpunit/phpunit": "^9.0"
25+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
26+
"phpunit/phpunit": "^9.0|^10.5|^11.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)