Skip to content

Commit

Permalink
Support for PHP 8.2 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Dec 9, 2022
1 parent 5bd13c6 commit c3e5555
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
[![Quality Score](https://img.shields.io/scrutinizer/g/protonemedia/laravel-blade-on-demand.svg?style=flat-square)](https://scrutinizer-ci.com/g/protonemedia/laravel-blade-on-demand)
[![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-blade-on-demand.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-blade-on-demand)

Laravel package to compile Blade templates in memory. Requires PHP 7.4 or higher, compatible with Laravel 8 and 9.
Laravel package to compile Blade templates in memory. Requires PHP 8.0 or higher, compatible with Laravel 9.

## 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 Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"illuminate/mail": "^8.67 || ^9.0",
"illuminate/view": "^8.67 || ^9.0"
"php": "^8.0 || ^8.1 || ^8.2",
"illuminate/mail": "^9.0",
"illuminate/view": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.23 || ^7.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
Expand Down

0 comments on commit c3e5555

Please sign in to comment.