diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c0de69e..e535f44 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,17 +8,12 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.0, 7.4] - laravel: [9.*, 8.*] + php: [8.2, 8.1, 8.0] + laravel: [9.*] dependency-version: [prefer-lowest, prefer-stable] - exclude: - - laravel: 9.* - php: 7.4 include: - laravel: 9.* testbench: 7.* - - laravel: 8.* - testbench: 6.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/README.md b/README.md index d6de644..6747b97 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-mixins.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-mixins) [![Buy us a tree](https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/protonemedia/laravel-mixins) -## Support this package! +## Sponsor this package! ❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help! @@ -16,9 +16,12 @@ It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://github.com/protonemedia/laravel-splade) provides a super easy way to build Single Page Applications using Blade templates. Besides that magic SPA-feeling, it comes with more than ten components to sparkle your app and make it interactive, all without ever leaving Blade. -## Installation +## Requirements + +* PHP 8.0+ +* Laravel 9.0 -Only the master branch and version 3.0 of this package are compatible with Laravel 8.0 ad 9.0. If you're still using an older version of Laravel (or PHP < 7.4), please use the 2.x branch. Mind that older versions are no longer supported. +## Installation You can install the package via composer: diff --git a/composer.json b/composer.json index aebf259..02bd957 100644 --- a/composer.json +++ b/composer.json @@ -16,19 +16,20 @@ } ], "require": { - "php": "^7.4 || ^8.0 || ^8.1", - "illuminate/support": "^8.67 || ^9.0" + "php": "^8.0 || ^8.1 || ^8.2", + "illuminate/support": "^9.0" }, "require-dev": { "html2text/html2text": "^4.3", "jeremykendall/php-domain-parser": "^6.0", - "laravel/ui": "^2.0 || ^3.0", + "laravel/ui": "^3.0", "mockery/mockery": "^1.3.3", "moneyphp/money": "^3.3", - "orchestra/testbench": "^6.23 || ^7.0", + "nesbot/carbon": "^2.63", + "orchestra/testbench": "^7.0", "phpunit/phpunit": "^9.4", - "spatie/laravel-sitemap": "^5.7 || ^6.0", - "symfony/process": "^5.1 || ^6.0" + "spatie/laravel-sitemap": "^6.0", + "symfony/process": "^6.0" }, "suggest": { "html2text/html2text": "To convert HTML to formatted plain text", @@ -55,4 +56,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +}