Skip to content

Commit 89f6d58

Browse files
authored
Support for PHP 8.2 (#33)
1 parent 1ff34b3 commit 89f6d58

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This package provides an integration with [Paddle.com](https://paddle.com) for L
1313
* Blade directive to use [Paddle.js](https://paddle.com/docs/paddle-js-overlay-checkout/) in your front-end
1414
* Support for [Paddle Sandbox](https://developer.paddle.com/getting-started/sandbox)
1515

16-
## Support this package!
16+
## Sponsor this package!
1717

1818
❤️ 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!
1919

@@ -28,7 +28,7 @@ It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://
2828
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.
2929

3030
| Laravel Version | Package Version |
31-
|-----------------|-----------------|
31+
| --------------- | --------------- |
3232
| 8.0-9.0 | 2.0 |
3333
| 6.0-7.0 | 1.0 |
3434

composer.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^7.4 || ^8.0 || ^8.1",
20+
"php": "^8.0 || ^8.1 || ^8.2",
2121
"ext-openssl": "*",
2222
"egulias/email-validator": "^2.1.10 || ^3.1",
2323
"guzzlehttp/guzzle": "^7.0.1",
24-
"illuminate/support": "^8.67 || ^9.0",
25-
"illuminate/validation": "^8.67 || ^9.0"
24+
"illuminate/support": "^9.0",
25+
"illuminate/validation": "^9.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^6.23 || ^7.0",
28+
"nesbot/carbon": "^2.63",
29+
"orchestra/testbench": "^7.0",
2930
"phpunit/phpunit": "^9.4"
3031
},
3132
"autoload": {
@@ -57,4 +58,4 @@
5758
}
5859
}
5960
}
60-
}
61+
}

0 commit comments

Comments
 (0)