Skip to content

Commit 875b74d

Browse files
authored
Support for PHP 8.2 (#8)
1 parent 56582bb commit 875b74d

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

.github/workflows/run-tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.0, 7.4]
12-
laravel: [9.*, 8.*]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [9.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
14-
exclude:
15-
- laravel: 9.*
16-
php: 7.4
1714
include:
1815
- laravel: 9.*
1916
testbench: 7.*
20-
- laravel: 8.*
21-
testbench: 6.*
2217

2318
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2419

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-mixins.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-mixins)
77
[![Buy us a tree](https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/protonemedia/laravel-mixins)
88

9-
## Support this package!
9+
## Sponsor this package!
1010

1111
❤️ 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!
1212

@@ -16,9 +16,12 @@
1616

1717
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.
1818

19-
## Installation
19+
## Requirements
20+
21+
* PHP 8.0+
22+
* Laravel 9.0
2023

21-
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.
24+
## Installation
2225

2326
You can install the package via composer:
2427

composer.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4 || ^8.0 || ^8.1",
20-
"illuminate/support": "^8.67 || ^9.0"
19+
"php": "^8.0 || ^8.1 || ^8.2",
20+
"illuminate/support": "^9.0"
2121
},
2222
"require-dev": {
2323
"html2text/html2text": "^4.3",
2424
"jeremykendall/php-domain-parser": "^6.0",
25-
"laravel/ui": "^2.0 || ^3.0",
25+
"laravel/ui": "^3.0",
2626
"mockery/mockery": "^1.3.3",
2727
"moneyphp/money": "^3.3",
28-
"orchestra/testbench": "^6.23 || ^7.0",
28+
"nesbot/carbon": "^2.63",
29+
"orchestra/testbench": "^7.0",
2930
"phpunit/phpunit": "^9.4",
30-
"spatie/laravel-sitemap": "^5.7 || ^6.0",
31-
"symfony/process": "^5.1 || ^6.0"
31+
"spatie/laravel-sitemap": "^6.0",
32+
"symfony/process": "^6.0"
3233
},
3334
"suggest": {
3435
"html2text/html2text": "To convert HTML to formatted plain text",
@@ -55,4 +56,4 @@
5556
},
5657
"minimum-stability": "dev",
5758
"prefer-stable": true
58-
}
59+
}

0 commit comments

Comments
 (0)