Skip to content

Commit

Permalink
Merge pull request #4 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
saade authored Mar 12, 2024
2 parents 61ee556 + 6a303cb commit 900d35f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2]
laravel: [9, 10]
php: ["8.0", 8.1, 8.2]
laravel: [9, 10, 11]
exclude:
- php: '8.0'
- php: "8.0"
laravel: 10
- laravel: "11"
php: "8.0"
- laravel: "11"
php: 8.1

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

Expand All @@ -36,5 +40,6 @@ jobs:
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit --verbose
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "saade/blade-iconsax",
"description": "A package to easily make use of Iconsax in your Laravel Blade views.",
"keywords": ["Blade", "Iconsax", "Laravel"],
"keywords": [
"Blade",
"Iconsax",
"Laravel"
],
"homepage": "https://github.com/saade/blade-iconsax",
"license": "MIT",
"authors": [
Expand All @@ -12,11 +16,11 @@
"require": {
"php": "^8.0",
"blade-ui-kit/blade-icons": "^1.1",
"illuminate/support": "^9.0|^10.0"
"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"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 900d35f

Please sign in to comment.