Skip to content

Commit

Permalink
Merge pull request #19 from mckenziearts/upgrade-laravel-11
Browse files Browse the repository at this point in the history
Upgrade to Laravel 11
  • Loading branch information
mckenziearts authored Apr 5, 2024
2 parents 942dd3e + bc109ce commit 46c98a2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
push:
branches:
- main
- '*.x'
- "*.x"
pull_request:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
tests:
Expand All @@ -16,8 +16,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [9, 10]
php: [8.1, 8.2, 8.3]
laravel: [9, 10, 11]
exclude:
- php: 8.1
laravel: 11
- php: 8.3
laravel: 9

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

Expand All @@ -38,4 +43,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
14 changes: 4 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
"keywords": ["Blade", "Untitled UI", "Laravel"],
"homepage": "https://github.com/mckenziearts/blade-untitledui-icons",
"license": "MIT",
"funding": [
{
"type": "custom",
"url": "https://laravel.cm/sponsors"
}
],
"authors": [
{
"name": "Arthur Monney",
Expand All @@ -18,12 +12,12 @@
],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^9.0|^10.0"
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 46c98a2

Please sign in to comment.