Skip to content

Commit 02c8820

Browse files
committed
Revert to 864708c
1 parent 154e4a6 commit 02c8820

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

.github/workflows/php.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
laravel: [ 9.*, 10.* ]
17-
php: [ 8.1, 8.2 ]
16+
laravel: [ 8.*, 9.* ]
17+
php: [ 8.0, 8.1 ]
1818
include:
19+
- laravel: 8.*
20+
php: 8.0
21+
testbench: 6.*
1922
- laravel: 9.*
2023
testbench: 7.*
21-
- laravel: 10.*
22-
testbench: 8.*
24+
exclude:
25+
- laravel: 8.*
26+
- php: ^8.1
2327

2428
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2529

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Of course, Receiver can receive webhooks from any source using [custom providers
4242

4343
Requires:
4444

45-
- PHP ^8.1
46-
- Laravel 9+
45+
- PHP ^8.0
46+
- Laravel 8+
4747

4848
```shell
4949
composer require hotmeteor/receiver

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"source": "https://github.com/hotmeteor/receiver"
2020
},
2121
"require": {
22-
"php": "^8.1",
23-
"illuminate/support": "^9.0|^10.0",
24-
"stripe/stripe-php": "^9.2"
22+
"php": "^8.0",
23+
"illuminate/support": "^7.0|^8.0|^9.0"
2524
},
2625
"require-dev": {
27-
"nunomaduro/collision": "^6.0|^7.0",
28-
"orchestra/testbench": "^7.0|^8.0",
29-
"phpunit/phpunit": "^9.5.8|^10.0"
26+
"nunomaduro/collision": "^5.0|^6.0",
27+
"orchestra/testbench": "^6.0|^7.0",
28+
"phpunit/phpunit": "^9.5.8",
29+
"stripe/stripe-php": "^9.2"
3030
},
3131
"autoload": {
3232
"psr-4": {

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
processIsolation="false"
1111
stopOnFailure="false"
1212
>
13-
<coverage>
13+
<coverage processUncoveredFiles="true">
1414
<include>
1515
<directory suffix=".php">src</directory>
1616
</include>

0 commit comments

Comments
 (0)