Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Mujhtech committed Aug 4, 2021
1 parent 63f82ab commit 347fb41
Showing 1 changed file with 46 additions and 29 deletions.
75 changes: 46 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,50 @@
{
"name": "laravel/sendchamp",
"description": "Laravel package for sendchamp api",
"require": {
"guzzlehttp/guzzle": "^7.3",
"php": "^7.2|^8.0",
"illuminate/support": "~6|~7|~8"
},
"authors": [
{
"name": "Mujhtech",
"email": "mujeeb.muhideen@gmail.com"
}
"name": "mujhtech/laravel-sendchamp",
"description": "Laravel package for sendchamp api",
"keywords": [
"php",
"github",
"laravel",
"Open Source",
"sms",
"email",
"sendchamp",
"whatsapp",
"otp",
"mujhtech",
"laravel 6",
"laravel 7",
"laravel 8"
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "^7.3",
"php": "^7.2|^8.0",
"illuminate/support": "~6|~7|~8"
},
"authors": [
{
"name": "Mujhtech",
"email": "mujeeb.muhideen@gmail.com"
}
],
"autoload": {
"files": [
"src/Helpers.php"
],
"autoload": {
"files": [
"src/Helpers.php"
],
"psr-4": {
"Mujhtech\\SendChamp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Mujhtech\\SendChamp\\SendChampServiceProvider"
],
"aliases": {
"SendChamp": "Mujhtech\\SendChamp\\Facades\\SendChamp"
}
}
"psr-4": {
"Mujhtech\\SendChamp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Mujhtech\\SendChamp\\SendChampServiceProvider"
],
"aliases": {
"SendChamp": "Mujhtech\\SendChamp\\Facades\\SendChamp"
}
}
}
}

0 comments on commit 347fb41

Please sign in to comment.