Skip to content

Commit

Permalink
Support for PHP 8.2 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Dec 9, 2022
1 parent 56582bb commit 875b74d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand All @@ -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:

Expand Down
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -55,4 +56,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 875b74d

Please sign in to comment.