diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d7fcdb..e7b60c0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,10 +4,10 @@ on: push: branches: - main - - '*.x' + - "*.x" pull_request: schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" jobs: tests: @@ -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 }} @@ -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 diff --git a/composer.json b/composer.json index af9a9bf..726ad0e 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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": {