Skip to content

Commit cd5a393

Browse files
authored
Laravel 9 (#21)
* Update for L9 * Update php.yml
1 parent 02c8820 commit cd5a393

File tree

3 files changed

+14
-24
lines changed

3 files changed

+14
-24
lines changed

.github/workflows/php.yml

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

2824
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2925

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.0",
23-
"illuminate/support": "^7.0|^8.0|^9.0"
22+
"php": "^8.1",
23+
"illuminate/support": "^9.0|^10.0",
24+
"stripe/stripe-php": "^9.2"
2425
},
2526
"require-dev": {
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"
27+
"nunomaduro/collision": "^6.0|^7.0",
28+
"orchestra/testbench": "^7.0|^8.0",
29+
"phpunit/phpunit": "^9.5.8|^10.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

phpunit.xml.dist

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
colors="true"
6-
convertDeprecationsToExceptions="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false"
126
>
13-
<coverage processUncoveredFiles="true">
7+
<coverage>
148
<include>
159
<directory suffix=".php">src</directory>
1610
</include>

0 commit comments

Comments
 (0)