Skip to content

Commit 59ac865

Browse files
authored
Merge pull request #1 from codeat3/l9
Added support for Laravel 9
2 parents f2f3bfc + 00b7833 commit 59ac865

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [7.4, 8.0]
15-
laravel: [^8.0]
14+
php: [7.4, '8.0', 8.1]
15+
laravel: [8, 9]
16+
exclude:
17+
- php: 7.4
18+
laravel: 9
1619

1720
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
1821

@@ -30,7 +33,8 @@ jobs:
3033

3134
- name: Install dependencies
3235
run: |
33-
composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
34-
composer update --prefer-dist --no-interaction --no-progress --dev
36+
composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
37+
composer update --prefer-dist --no-interaction --no-progress
38+
3539
- name: Execute tests
3640
run: vendor/bin/phpunit --verbose

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
],
1717
"require": {
1818
"php": "^7.4|^8.0",
19-
"blade-ui-kit/blade-icons": "^1.0",
20-
"illuminate/support": "^8.0"
19+
"blade-ui-kit/blade-icons": "^1.1",
20+
"illuminate/support": "^8.0|^9.0"
2121
},
2222
"require-dev": {
23-
"codeat3/phpcs-styles": "dev-main",
24-
"orchestra/testbench": "^6.0",
23+
"codeat3/phpcs-styles": "^1.0",
24+
"orchestra/testbench": "^6.0|^7.0",
2525
"phpunit/phpunit": "^9.0"
2626
},
2727
"autoload": {

0 commit comments

Comments
 (0)