diff --git a/.gitignore b/.gitignore index 37d16e3..f92c1f3 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,4 @@ Network Trash Folder Temporary Items .apdisk .phpunit.result.cache +/.phpunit.cache/ diff --git a/README.md b/README.md index c8ce2f1..d5de010 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,13 @@ It provides the following features ## Installation +For Laravel 11.x + + composer require juanparati/brevosuite "^11.0" + For Laravel 10.x - composer require juanparati/brevosuite + composer require juanparati/brevosuite "^10.0" For older Laravel versions check [Sendinblue v3 for Laravel](https://github.com/juanparati/Sendinblue). diff --git a/composer.json b/composer.json index d7b13ce..b0d9709 100644 --- a/composer.json +++ b/composer.json @@ -13,16 +13,16 @@ "sms" ], "require": { - "php": ">=8.1", - "laravel/framework": "^10.0.0", - "illuminate/mail": "^10.0.0", + "php": ">=8.2", + "laravel/framework": "^11.0.0", + "illuminate/mail": "^11.0.0", "getbrevo/brevo-php": "~v1.0.2", "symfony/brevo-mailer": "~7.0.3", "symfony/http-client": "^7.0" }, "require-dev": { "phpunit/phpunit": "^10.0.7", - "orchestra/testbench": "^8.21" + "orchestra/testbench": "^8.21|^9.0" }, "autoload": { "psr-4": { diff --git a/tests/test/Services/ServiceRegistrationTest.php b/tests/test/Services/ServiceRegistrationTest.php index f3b6ca5..3b7fff9 100644 --- a/tests/test/Services/ServiceRegistrationTest.php +++ b/tests/test/Services/ServiceRegistrationTest.php @@ -16,7 +16,6 @@ use Brevo\Client\Api\ExternalFeedsApi; use Brevo\Client\Api\FilesApi; use Brevo\Client\Api\FoldersApi; -use Brevo\Client\Api\InboundParsingApi; use Brevo\Client\Api\ListsApi; use Brevo\Client\Api\MasterAccountApi; use Brevo\Client\Api\NotesApi;