Skip to content

Commit

Permalink
Added support for Laravel 9 (#19)
Browse files Browse the repository at this point in the history
Added support for Laravel 9
  • Loading branch information
swapnilsarwe authored Feb 7, 2022
1 parent 4ac15c6 commit 249dd64
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ jobs:
fail-fast: true
matrix:
php: [7.4, '8.0', 8.1]
laravel: [8]
laravel: [8, 9]
exclude:
- php: 7.4
laravel: 9

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


steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
],
"require": {
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.0",
"illuminate/support": "^8.0"
"blade-ui-kit/blade-icons": "^1.1",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"codeat3/blade-icon-generation-helpers": "dev-poc",
"codeat3/phpcs-styles": "dev-main",
"orchestra/testbench": "^6.0",
"codeat3/blade-icon-generation-helpers": "^0.1",
"codeat3/phpcs-styles": "^1.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down

0 comments on commit 249dd64

Please sign in to comment.