Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tintnaingwinn committed Dec 5, 2021
1 parent 1f7fa3b commit 7a8b45f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 92 deletions.
21 changes: 0 additions & 21 deletions .scrutinizer.yml

This file was deleted.

1 change: 0 additions & 1 deletion .styleci.yml

This file was deleted.

57 changes: 0 additions & 57 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ All notable changes to `smspoh` will be documented in this file
## 1.1.0 - 2020-09-26

- Laravel 8 support

## 1.2.0 - 2021-12-05

- Add PHP 8 support
- Drop Laravel 5.*
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Smspoh Notifications Channel for Laravel

[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/smspoh.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/smspoh)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Build Status](https://img.shields.io/travis/laravel-notification-channels/smspoh/master.svg?style=flat-square)](https://travis-ci.org/laravel-notification-channels/smspoh)
[![StyleCI](https://styleci.io/repos/229822475/shield)](https://styleci.io/repos/:style_ci_id)
[![Quality Score](https://img.shields.io/scrutinizer/g/laravel-notification-channels/smspoh.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/smspoh)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/smspoh/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/smspoh/?branch=master)
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/smspoh.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/smspoh)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)

This package makes it easy to send notifications using [SmsPoh](https://smspoh.com/) with Laravel 5.5+, 6.x, 7.x and 8.x
This package makes it easy to send notifications using [SmsPoh](https://smspoh.com/) with Laravel 6.x, 7.x and 8.x

## Contents

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laravel-notification-channels/smspoh",
"description": "Smspoh Notifications channel for Laravel >= 5.5, 6 and 7.",
"description": "Smspoh Notifications channel for Laravel 6, 7 and 8.",
"keywords": ["laravel", "notifications", "smspoh", "message", "sms", "myanmar", "MPT", "Telenor", "Ooredoo", "MyTel"],
"homepage": "https://github.com/laravel-notification-channels/smspoh",
"license": "MIT",
Expand All @@ -13,16 +13,16 @@
}
],
"require": {
"php": ">=7.2",
"php": "^7.2 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.4 || ^7.0",
"illuminate/notifications": "5.5 - 5.8 || ~6.0 || ~7.0 || ~8.0",
"illuminate/support": "5.5 - 5.8 || ~6.0 || ~7.0 || ~8.0"
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0|^8.0",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0"
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7a8b45f

Please sign in to comment.