File tree Expand file tree Collapse file tree 3 files changed +20
-29
lines changed Expand file tree Collapse file tree 3 files changed +20
-29
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-twilio-webhooks ` will be documented in this file
4
4
5
+ ## 1.1.0 - 2023-04-08
6
+
7
+ - Updated phpunit schema
8
+ - Updated dependencies to allow Laravel 10
9
+
5
10
## 1.0.0 - 2022-06027
6
11
7
12
- Initial Release
Original file line number Diff line number Diff line change 20
20
],
21
21
"require" : {
22
22
"php" : " ^8.0" ,
23
- "illuminate/support" : " ^8.0|^9.0" ,
23
+ "illuminate/support" : " ^8.0|^9.0|^10.0 " ,
24
24
"spatie/laravel-webhook-client" : " ^3.0" ,
25
- "twilio/sdk" : " ^6.37"
25
+ "twilio/sdk" : " ^6.37|^7.0 "
26
26
},
27
27
"require-dev" : {
28
- "orchestra/testbench" : " ^6.0|^7.0" ,
29
- "phpunit/phpunit" : " ^9.4"
28
+ "orchestra/testbench" : " ^6.0|^7.0|^8.0 " ,
29
+ "phpunit/phpunit" : " ^9.4|^10.0 "
30
30
},
31
31
"autoload" : {
32
32
"psr-4" : {
39
39
}
40
40
},
41
41
"suggest" : {
42
- "binary-cats/laravel-lob-webhooks" : " ^9.0"
42
+ "binary-cats/laravel-lob-webhooks" : " Handle Lob.com webhooks in a Laravel application" ,
43
+ "binary-cats/laravel-mailgun-webhooks" : " Handle mailgun.com webhooks in a Laravel application"
43
44
},
44
45
"scripts" : {
45
46
"coverage" : " XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage -d pcov.enabled" ,
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 =" Tests" >
8
+ <directory suffix =" Test.php" >./tests</directory >
9
+ </testsuite >
10
+ </testsuites >
14
11
<coverage >
15
12
<include >
16
- <directory suffix =" .php" >src/ </directory >
13
+ <directory suffix =" .php" >./src </directory >
17
14
</include >
18
- <report >
19
- <clover outputFile =" build/logs/clover.xml" />
20
- <html outputDirectory =" build/coverage" />
21
- <text outputFile =" build/coverage.txt" />
22
- </report >
23
15
</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
16
</phpunit >
17
+
You can’t perform that action at this time.
0 commit comments