Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Update dependencies to support Laravel latest versions
  • Loading branch information
jcancig committed Jul 22, 2024
1 parent 36e8a22 commit ae2ceba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
],
"minimum-stability": "dev",
"require": {
"php": ">=7.0",
"php": ">=8.2.0",
"ext-json": "*",
"illuminate/notifications": "~5.5|^6.0|^7.0|^8.0",
"illuminate/support": "~5.5|^6.0|^7.0|^8.0",
"illuminate/http": "~5.5|^6.0|^7.0|^8.0",
"illuminate/routing": "~5.5|^6.0|^7.0|^8.0",
"guzzlehttp/guzzle": "^6.2|^7.0|^8.0",
"illuminate/events": "~5.5|^6.0|^7.0|^8.0",
"nesbot/carbon": "^2.0"
"illuminate/notifications": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^6.2|^7.9.1",
"illuminate/events": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.0|^3.7.0"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 4 additions & 2 deletions src/Exceptions/CouldNotSendNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

namespace SquareetLabs\LaravelSmsUp\Exceptions;

use Exception;

/**
* Class CouldNotSendNotification
* @package SquareetLabs\LaravelSmsUp\Exceptions
*/
class CouldNotSendNotification extends \Exception
class CouldNotSendNotification extends Exception
{
/**
* Get a new could not send notification exception with
Expand All @@ -19,4 +21,4 @@ public static function missingRecipient()
$message = 'The recipient of the sms message is missing.';
return new static($message);
}
}
}

0 comments on commit ae2ceba

Please sign in to comment.