Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zepson-tech/zepsonsms-laravel
Laravel Integration to ZepsonSMS
https://github.com/zepson-tech/zepsonsms-laravel
hacktoberfest laravel
Last synced: about 1 month ago
JSON representation
Laravel Integration to ZepsonSMS
- Host: GitHub
- URL: https://github.com/zepson-tech/zepsonsms-laravel
- Owner: Zepson-Tech
- License: mit
- Created: 2021-08-30T19:14:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T00:41:29.000Z (over 2 years ago)
- Last Synced: 2024-11-18T10:55:16.711Z (about 1 month ago)
- Topics: hacktoberfest, laravel
- Language: PHP
- Homepage:
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Laravel ZepsonSMS
## Installation
You can install the package via composer:
```bash
composer require zepson/laravel-zepsonsms
```You can publish the config file with:
```bash
php artisan vendor:publish --provider="NotificationChannels\ZepsonSms\ZepsonSmsServiceProvider" --tag="zepsonsms-config"
```This is the contents of the published config file:
```php
return [
#
];
```## Usage
```php
$zepsonsms = new NotificationChannels\ZepsonSms();
echo $zepsonsms->echoPhrase('Hello, NotificationChannels!');
```## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Alpha Olomi](https://github.com/Zepson-Technologies)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.