File tree Expand file tree Collapse file tree 3 files changed +19
-29
lines changed Expand file tree Collapse file tree 3 files changed +19
-29
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-mailgun-webhooks ` will be documented in this file
4
4
5
+ ## 9.2.0 - 2023-04-08
6
+
7
+ - Add Laravel 10 integration
8
+
5
9
## 9.1.0 - 2022-01-26
6
10
7
11
- Drop support for PHP 7
8
- - Upgrade spatie/laravel-webhook-client to version 2 .0
12
+ - Upgrade spatie/laravel-webhook-client to version 3 .0
9
13
- Test Laravel 9 integration
10
14
11
15
## 9.0.0 - 2022-01-20
Original file line number Diff line number Diff line change 19
19
],
20
20
"require" : {
21
21
"php" : " ^8.0" ,
22
- "illuminate/support" : " ^8.0|^9.0" ,
22
+ "illuminate/support" : " ^8.0|^9.0|^10.0 " ,
23
23
"spatie/laravel-webhook-client" : " ^3.0"
24
24
},
25
25
"require-dev" : {
26
- "orchestra/testbench" : " ^6.0|^7.0" ,
27
- "phpunit/phpunit" : " ^9.4"
26
+ "orchestra/testbench" : " ^6.0|^7.0|^8.0 " ,
27
+ "phpunit/phpunit" : " ^9.4|^10.0 "
28
28
},
29
29
"autoload" : {
30
30
"psr-4" : {
40
40
"binary-cats/laravel-lob-webhooks" : " ^9.0"
41
41
},
42
42
"scripts" : {
43
- "analyze" : " ./vendor/bin/phpstan analyse src --memory-limit=2G" ,
44
43
"coverage" : " XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage -d pcov.enabled" ,
45
44
"test" : " ./vendor/bin/phpunit --color=always -vvv"
46
45
},
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
3
+ xsi : noNamespaceSchemaLocation =" ./vendor/phpunit/phpunit/phpunit.xsd"
5
4
bootstrap =" vendor/autoload.php"
6
- colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" true"
11
- stopOnFailure =" false"
12
- verbose =" true"
13
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
5
+ colors =" true" >
6
+ <testsuites >
7
+ <testsuite name =" Unit" >
8
+ <directory suffix =" Test.php" >./tests</directory >
9
+ </testsuite >
10
+ <testsuite name =" Tests" >
11
+ <directory suffix =" Test.php" >./tests</directory >
12
+ </testsuite >
13
+ </testsuites >
14
14
<coverage >
15
15
<include >
16
- <directory suffix =" .php" >src/ </directory >
16
+ <directory suffix =" .php" >./src </directory >
17
17
</include >
18
- <report >
19
- <clover outputFile =" build/logs/clover.xml" />
20
- <html outputDirectory =" build/coverage" />
21
- <text outputFile =" build/coverage.txt" />
22
- </report >
23
18
</coverage >
24
- <testsuites >
25
- <testsuite name =" Binary Cats Test Suite" >
26
- <directory >tests</directory >
27
- </testsuite >
28
- </testsuites >
29
- <logging >
30
- <junit outputFile =" build/report.junit.xml" />
31
- </logging >
32
19
</phpunit >
You can’t perform that action at this time.
0 commit comments