Skip to content

Commit

Permalink
chore: support laravel 6.0 (#31)
Browse files Browse the repository at this point in the history
chore: support laravel 6.0
  • Loading branch information
atymic authored Sep 29, 2019
2 parents 4a4f18c + 9e2b703 commit 47b7e08
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
preset: laravel

linting: true
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

env:
matrix:
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `facebook-poster` will be documented in this file

## 1.0.0 - 201X-XX-XX
## 1.6.0

- initial release
- Laravel 6.0 Support

## 1.5.0

- Laravel 5.8 Support
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FacebookPoster Notification Channel For Laravel 5.5
# FacebookPoster Notification Channel For Laravel

[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/facebook-poster.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/facebook-poster)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
Expand All @@ -10,7 +10,7 @@
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/facebook-poster.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/facebook-poster)


This package makes it easly to post on facebook using FacebookPoster Notification with Laravel 5.5
This package makes it easly to post on facebook using FacebookPoster Notification with Laravel 5.5+ & 6.0


## Contents
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
"email": "[email protected]"
}],
"require": {
"facebook/graph-sdk": "^5.4",
"illuminate/notifications": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*"
"php": "^7.2",
"facebook/graph-sdk": "^5.7",
"illuminate/notifications": "~5.5 || ~6.0",
"illuminate/support": "~5.5 || ~6.0"
},
"require-dev": {
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "~5.7",
"orchestra/testbench": "~3.3|~3.4|~3.6|~3.7"
"orchestra/testbench": "~3.7 || ~4.0",
"phpunit/phpunit": "~7.0 || ~8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
Expand Down

0 comments on commit 47b7e08

Please sign in to comment.