agoalofalife / targetsms by agoalofalife

This is wrapper https://targetsms.ru/
95
0
3
Package Data
Maintainer Username: agoalofalife
Maintainer Contact: agoalofalife@gmail.com (agoalofalife)
Package Create Date: 2017-01-11
Package Last Update: 2023-10-06
Home Page: https://targetsms.ru
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 03:09:49
Package Statistics
Total Downloads: 95
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

What it is?

Is a library for the use of sending SMS with the service TargetSms

This package is framework-dependent!

It is used in the environment Laravel

How to start using?

You must add the service provider in file config/app.php

agoalofalife\targetsms\Providers\TargetSmsProvider::class

and execute the command in the console

php artisan vendor:publish

Then in the folder ** /config** you will see file targetSMS.php

You will need to add your settings

return [
'login' => '',
'password' => '',
'url' => 'https://sms.targetsms.ru', //most likely
'sender' => '' //how to sign SMS messages
];

Examples you can see in the folder Example