Skip to content

Commit

Permalink
Merge pull request #1 from Astrotomic/ft-laravel-7
Browse files Browse the repository at this point in the history
add laravel 7 support
  • Loading branch information
Gummibeer authored Mar 12, 2020
2 parents 7a5881f + ab39bd4 commit 16952ba
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
fail-fast: true
matrix:
php: [7.4]
laravel: [6.*]
laravel: [7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

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

All notable changes to `laravel-unavatar` will be documented in this file

## 0.1.1 - 2020-03-12

- add Laravel 7 support

## 0.1.0 - 2020-02-22

- initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PHP Unavatar
# Laravel Unavatar

[![Latest Version](http://img.shields.io/packagist/v/astrotomic/laravel-unavatar.svg?label=Release&style=for-the-badge)](https://packagist.org/packages/astrotomic/laravel-unavatar)
[![MIT License](https://img.shields.io/github/license/Astrotomic/laravel-unavatar.svg?label=License&color=blue&style=for-the-badge)](https://github.com/Astrotomic/laravel-unavatar/blob/master/LICENSE)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"require": {
"php": "^7.1",
"astrotomic/php-unavatar": "^0.1.0",
"illuminate/support": "^6.0"
"illuminate/support": "^6.0 || ^7.0"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0"
"orchestra/testbench": "^4.0 || ^5.0",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit 16952ba

Please sign in to comment.