Skip to content

Commit

Permalink
Merge pull request #10 from mxschll/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
mxschll authored Apr 2, 2024
2 parents 5f43bce + aa760b3 commit f154d48
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ checks:
fix_doc_comments: true

tools:
external_code_coverage: true
external_code_coverage: false
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
# SMS77 notifications channel for Laravel
# Seven.io (formerly SMS77) notifications channel for Laravel

[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/sms77.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/sms77)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Build Status](https://img.shields.io/github/workflow/status/laravel-notification-channels/sms77/PHP%20Composer?style=flat-square)](https://github.com/laravel-notification-channels/sms77/actions)
[![Build Status](https://img.shields.io/github/actions/workflow/status/laravel-notification-channels/sms77/php.yml?style=flat-square)](https://github.com/laravel-notification-channels/sms77/actions)
[![StyleCI](https://github.styleci.io/repos/259466891/shield?branch=master)](https://github.styleci.io/repos/259466891)
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/:sensio_labs_id.svg?style=flat-square)](https://insight.sensiolabs.com/projects/:sensio_labs_id)
[![Quality Score](https://img.shields.io/scrutinizer/g/laravel-notification-channels/sms77.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/sms77)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/sms77/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/sms77/?branch=master)
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/sms77.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/sms77)

This package makes it easy to send notifications using [SMS77](https://www.sms77.io/) with Laravel.
This package makes it easy to send notifications using [Seven.io (formerly SMS77)](https://www.seven.io) with Laravel.

## Contents

- [Installation](#installation)
- [Setting up the SMS77 service](#setting-up-the-SMS77-service)
- [Setting up the Seven.io service](#setting-up-the-SMS77-service)
- [Usage](#usage)
- [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
Expand All @@ -33,15 +31,15 @@ This package can be installed via composer:

### Setting up the SMS77 service

1. Create an account and get the API key [here](https://www.sms77.io)
1. Create an account and get the API key [here](https://www.seven.io)

2. Add the API key to the `services.php` config file:

```php
// config/services.php
...
'sms77' => [
'api_key' => env('SMS77_API_KEY')
'api_key' => env('SEVEN_API_KEY')
],
...
```
Expand Down

0 comments on commit f154d48

Please sign in to comment.