Skip to content

Commit

Permalink
Add Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohnson6494 committed Mar 23, 2024
1 parent a41e707 commit db01187
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
}
],
"require": {
"php": "^8.0.2 || ^8.1",
"php": "^8.0.2 || ^8.1 || ^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"illuminate/mail": "^9.0 || ^10",
"illuminate/support": "^9.0 || ^10",
"illuminate/mail": "^9.0 || ^10 || ^11",
"illuminate/support": "^9.0 || ^10 || ^11",
"tijsverkoyen/css-to-inline-styles": "~2.2"
},
"require-dev": {
"enlightn/security-checker": "^1.10",
"phpunit/phpunit": "^9.0 || ^10",
"symfony/mailer": "^6.0"
"enlightn/security-checker": "^2.0",
"phpunit/phpunit": "^9.0 || ^10 || ^11",
"symfony/mailer": "^7.0"
},
"config": {
"sort-packages": true
Expand Down
12 changes: 6 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Laravel Symfony Mail CSS Inliner Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit db01187

Please sign in to comment.