Skip to content

Commit

Permalink
Support for PHP 8.2 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Dec 9, 2022
1 parent 1ff34b3 commit 89f6d58
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 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 @@ -13,7 +13,7 @@ This package provides an integration with [Paddle.com](https://paddle.com) for L
* Blade directive to use [Paddle.js](https://paddle.com/docs/paddle-js-overlay-checkout/) in your front-end
* Support for [Paddle Sandbox](https://developer.paddle.com/getting-started/sandbox)

## 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 @@ -28,7 +28,7 @@ It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://
Only the master branch and version 2.0 of this package are compatible with Laravel 8.0 and 9.0. If you're still using an older version of Laravel (or PHP < 7.3), please use the chart below to find out which version you should use. Mind that older versions are no longer supported.

| Laravel Version | Package Version |
|-----------------|-----------------|
| --------------- | --------------- |
| 8.0-9.0 | 2.0 |
| 6.0-7.0 | 1.0 |

Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"php": "^8.0 || ^8.1 || ^8.2",
"ext-openssl": "*",
"egulias/email-validator": "^2.1.10 || ^3.1",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/support": "^8.67 || ^9.0",
"illuminate/validation": "^8.67 || ^9.0"
"illuminate/support": "^9.0",
"illuminate/validation": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.23 || ^7.0",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
Expand Down Expand Up @@ -57,4 +58,4 @@
}
}
}
}
}

0 comments on commit 89f6d58

Please sign in to comment.