Skip to content

Commit b3152cb

Browse files
authored
Merge pull request #1 from binary-cats/patch-1-laravel-10
- Updated phpunit schema - Updated dependencies to allow Laravel 10
2 parents 2ed94e0 + 7b9c07c commit b3152cb

File tree

3 files changed

+20
-29
lines changed

3 files changed

+20
-29
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All 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

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
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": {
@@ -39,7 +39,8 @@
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",

phpunit.xml

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,17 @@
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+

0 commit comments

Comments
 (0)