Skip to content

Commit

Permalink
Merge pull request #41 from Okipa/php8-support
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic authored Nov 23, 2020
2 parents 581d430 + b9be12f commit f5ca721
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
max-parallel: 15
matrix:
laravel-version: ['^6.0', '^7.0', '^8.0']
php-versions: ['7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0']
name: PHP ${{ matrix.php-versions }} on Laravel ${{ matrix.laravel-version }}
steps:
- name: Checkout
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

All notable changes to `webhook` will be documented in this file

## 2.2.0 - 2020-11-11

* Added PHP 8 support

## 2.1.0 - 2020-08-21

* Added Laravel 8 support.
* Dropped Laravel 6 support.
* Added PHP7.4 version testing in Travis CI.
* Added Laravel 8 support
* Dropped Laravel 6 support
* Added PHP7.4 version testing in Travis CI

## 1.0.0 - 201X-XX-XX

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/webhook/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/webhook/?branch=master)
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/webhook.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/webhook)

This package makes it easy to send webhooks using the Laravel notification system. Supports 5.5+. 6.x and 7.x.
This package makes it easy to send webhooks using the Laravel notification system. Supports 5.5+, 6.x, 7.x and 8.x.

## Contents

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.2.5",
"php": "^7.2.5 || ^8.0",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0"
Expand Down

0 comments on commit f5ca721

Please sign in to comment.