-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump dependencies for Laravel 10 * Update composer.json --------- Co-authored-by: Shivam Agarwal <[email protected]>
- Loading branch information
1 parent
eb446b7
commit 33bf673
Showing
1 changed file
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
{ | ||
"name": "gr8shivam/laravel-sms-api", | ||
"version":"3.0.5", | ||
"description": "Laravel package to provide SMS API integration. Any SMS vendor that provides REST API can be used. SMS-API channel for Laravel notifications also included.", | ||
"license": "MIT", | ||
"keywords": [ | ||
"name": "gr8shivam/laravel-sms-api", | ||
"version": "3.0.6", | ||
"description": "Laravel package to provide SMS API integration. Any SMS vendor that provides REST API can be used. SMS-API channel for Laravel notifications also included.", | ||
"license": "MIT", | ||
"keywords": [ | ||
"laravel sms", | ||
"laravel notifications", | ||
"laravel sms sender", | ||
"laravel sms notifications", | ||
"laravel sms api", | ||
"laravel sms web api" | ||
], | ||
"homepage": "https://github.com/gr8shivam/laravel-sms-api", | ||
"authors": [ | ||
{ | ||
"name": "Shivam Agarwal", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/gr8shivam", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.6.4", | ||
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0", | ||
"guzzlehttp/guzzle": "~6.0|^7.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.3", | ||
"orchestra/testbench": "~3.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Gr8Shivam\\SmsApi\\": "src" | ||
"homepage": "https://github.com/gr8shivam/laravel-sms-api", | ||
"authors": [ | ||
{ | ||
"name": "Shivam Agarwal", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/gr8shivam", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.6.4", | ||
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0", | ||
"guzzlehttp/guzzle": "~6.0|^7.0" | ||
}, | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Gr8Shivam\\SmsApi\\Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability":"stable", | ||
"extra": { | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.3|^9.5.10", | ||
"orchestra/testbench": "~3.0|^8.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Gr8Shivam\\SmsApi\\": "src" | ||
}, | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Gr8Shivam\\SmsApi\\Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Gr8Shivam\\SmsApi\\SmsApiServiceProvider" | ||
|