Skip to content

Commit

Permalink
Merge pull request #1 from swapnilsarwe/laravel10-compatible
Browse files Browse the repository at this point in the history
adding compatibility for laravel 10 by adding support for PHP 8.1
  • Loading branch information
afatmustafa authored May 31, 2024
2 parents 120288c + 5c7e0ac commit 9fc946c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
laravel: [11]
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
exclude:
- php: 8.1
laravel: 11

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ A package to easily make use of [Hugeicons](https://hugeicons.com/)(Free version

For a full list of available icons see [the SVG directory](resources/svg) or preview them at [hugeicons.com](https://hugeicons.com/).

> **Note**
> **Note**
> This package only includes the Hugeicons's free set, for more please visit the link. [Hugeicons Pro](https://hugeicons.com/pricing)

## Requirements

- PHP 8.2 or higher
- PHP 8.1 or higher
- Laravel 10.0 or higher

## Installation
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
}
],
"require": {
"php": "~8.2.0|~8.3.0",
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^11.0"
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.1",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.0"
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9fc946c

Please sign in to comment.