Package Data | |
---|---|
Maintainer Username: | talhaHavadar |
Maintainer Contact: | havadartalha@gmail.com (Talha Havadar) |
Package Create Date: | 2016-12-09 |
Package Last Update: | 2017-01-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-18 03:02:30 |
Package Statistics | |
---|---|
Total Downloads: | 98 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 4 |
Total Forks: | 1 |
Total Open Issues: | 0 |
composer require talhahavadar/iletimerkezi-sms
First you need to install via composer after that you need to add IletimerkeziSmsServiceProvider
to
app/Providers/AppServiceProvider.php
file of your project.
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->register('IletimerkeziSms\IletimerkeziSmsServiceProvider');
}
then you can run the command below:
php artisan vendor:publish --tag=config
Then you need to enter your credentials to config/iletimerkezi.php
file.
You can find example usage of library in tests/test.php
file.
If it is not working correctly please run the command below.
php artisan config:cache
Sometimes config()
function returns null. To prevent this case, we need to run the command above.