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 22
33All notable changes to ` laravel-twilio-webhooks ` will be documented in this file
44
5+ ## 1.1.0 - 2023-04-08
6+
7+ - Updated phpunit schema
8+ - Updated dependencies to allow Laravel 10
9+
510## 1.0.0 - 2022-06027
611
712- Initial Release
Original file line number Diff line number Diff line change 2020 ],
2121 "require" : {
2222 "php" : " ^8.0" ,
23- "illuminate/support" : " ^8.0|^9.0" ,
23+ "illuminate/support" : " ^8.0|^9.0|^10.0 " ,
2424 "spatie/laravel-webhook-client" : " ^3.0" ,
25- "twilio/sdk" : " ^6.37"
25+ "twilio/sdk" : " ^6.37|^7.0 "
2626 },
2727 "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 "
3030 },
3131 "autoload" : {
3232 "psr-4" : {
3939 }
4040 },
4141 "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"
4344 },
4445 "scripts" : {
4546 "coverage" : " XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage -d pcov.enabled" ,
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- backupGlobals =" false"
4- backupStaticAttributes =" false"
3+ xsi : noNamespaceSchemaLocation =" ./vendor/phpunit/phpunit/phpunit.xsd"
54 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 >
1411 <coverage >
1512 <include >
16- <directory suffix =" .php" >src/ </directory >
13+ <directory suffix =" .php" >./src </directory >
1714 </include >
18- <report >
19- <clover outputFile =" build/logs/clover.xml" />
20- <html outputDirectory =" build/coverage" />
21- <text outputFile =" build/coverage.txt" />
22- </report >
2315 </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 >
3216</phpunit >
17+
You can’t perform that action at this time.
0 commit comments