-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
158 additions
and
133 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
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,47 +1,44 @@ | ||
{ | ||
"name": "cybersai/laravel-ussd", | ||
"description": "A Laravel package that speed up the development process for USSD", | ||
"name": "cybersai/laravelussd", | ||
"description": "Quick Ussd apps", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Isaac Adzah Sai", | ||
"email": "isaacsai030@gmail.com", | ||
"role": "Developer" | ||
"homepage": "author homepage" | ||
} | ||
], | ||
"homepage": "https://github.com/cybersai/laravelussd", | ||
"keywords": [ | ||
"laravel", | ||
"laravel-ussd", | ||
"ussd", | ||
"framework" | ||
], | ||
"minimum-stability": "alpha", | ||
"keywords": ["Laravel", "LaravelUssd"], | ||
"require": { | ||
"illuminate/support": "~5|~6", | ||
"cybersai/ussd": "~1.2" | ||
"cybersai/ussd": "@dev" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~7.0", | ||
"phpunit/phpunit": "^8.0", | ||
"mockery/mockery": "^1.1", | ||
"orchestra/testbench": "~3.0", | ||
"orchestra/testbench": "~3|~4", | ||
"sempro/phpunit-pretty-print": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"CyberSai\\LaravelUssd\\": "src/" | ||
"Cybersai\\LaravelUssd\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"CyberSai\\LaravelUssd\\Tests\\": "tests" | ||
"Cybersai\\LaravelUssd\\Tests\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"CyberSai\\LaravelUssd\\UssdServiceProvider" | ||
] | ||
"Cybersai\\LaravelUssd\\LaravelUssdServiceProvider" | ||
], | ||
"aliases": { | ||
"LaravelUssd": "Cybersai\\LaravelUssd\\Facades\\LaravelUssd" | ||
} | ||
} | ||
} | ||
} | ||
} |
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,5 +1,5 @@ | ||
<?php | ||
|
||
return [ | ||
'provider' => env('USSD_PROVIDER', 'korba') | ||
]; | ||
// | ||
]; |
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Cybersai\LaravelUssd\Facades; | ||
|
||
use Illuminate\Support\Facades\Facade; | ||
|
||
class Ussd extends Facade | ||
{ | ||
/** | ||
* Get the registered name of the component. | ||
* | ||
* @return string | ||
*/ | ||
protected static function getFacadeAccessor() | ||
{ | ||
return 'laravelussd'; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace Cybersai\LaravelUssd; | ||
|
||
class Ussd | ||
{ | ||
// Build wonderful things | ||
} |
Oops, something went wrong.