Skip to content

Commit 3f632bb

Browse files
committed
Remove scrutinizer badges
1 parent fd9b344 commit 3f632bb

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,5 @@
77
/.gitignore export-ignore
88
/.travis.yml export-ignore
99
/phpunit.xml.dist export-ignore
10-
/.scrutinizer.yml export-ignore
11-
/.styleci.yml export-ignore
1210
/.editorconfig export-ignore
1311
/tests export-ignore

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/twilio.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/twilio)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
55
[![Build Status](https://github.com/onlime/laravel-notification-channels-twilio/actions/workflows/ci.yml/badge.svg)](https://github.com/onlime/laravel-notification-channels-twilio/actions/workflows/ci.yml)
6-
[![Quality Score](https://img.shields.io/scrutinizer/g/laravel-notification-channels/twilio.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/twilio)
7-
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/twilio/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/twilio/?branch=master)
86
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/twilio.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/twilio)
97

108
This package makes it easy to send [Twilio notifications](https://documentation.twilio.com/docs) with Laravel 11.x
@@ -57,7 +55,7 @@ Run `php artisan vendor:publish --provider="NotificationChannels\Twilio\TwilioPr
5755
#### Suppressing specific errors or all errors
5856

5957
Publish the config using the above command, and edit the `ignored_error_codes` array. You can get the list of
60-
exception codes from [the documentation](https://www.twilio.com/docs/api/errors).
58+
exception codes from [the documentation](https://www.twilio.com/docs/api/errors).
6159

6260
If you want to suppress all errors, you can set the option to `['*']`. The errors will not be logged but notification
6361
failed events will still be emitted.
@@ -75,13 +73,13 @@ We have dropped support for PHP < 8.2 and the minimum Laravel version is now 11.
7573

7674
## Upgrading from 2.x to 3.x
7775

78-
If you're upgrading from version `2.x`, you'll need to make sure that your set environment variables match those above
79-
in the config section. None of the environment variable names have changed, but if you used different keys in your
76+
If you're upgrading from version `2.x`, you'll need to make sure that your set environment variables match those above
77+
in the config section. None of the environment variable names have changed, but if you used different keys in your
8078
`services.php` config then you'll need to update them to match the above, or publish the config file and change the
8179
`env` key.
82-
80+
8381
You should also remove the old entry for `twilio` from your `services.php` config, since it's no longer used.
84-
82+
8583
The main breaking change between `2.x` and `3.x` is that failed notification will now throw an exception unless they are
8684
in the list of ignored error codes (publish the config file to edit these).
8785

0 commit comments

Comments
 (0)