Skip to content

Commit

Permalink
Merge pull request #7 from binary-cats/patch-1
Browse files Browse the repository at this point in the history
Update dependencies to support Laravel 8
  • Loading branch information
cyrillkalita authored Nov 7, 2020
2 parents 502bc80 + 1991ef0 commit 48f8a3f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Laravel

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
laravel-tests:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 1.2.0 - 2020-11-07

- Update dependencies to support Laravel 8
- Add Github tests
- Joe Biden will be 46th president of USA

## 1.0.0 - 2020-01-27

- initial release
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
],
"require": {
"php": "^7.2",
"illuminate/support": "~5.8.0|^6.0|^7.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
"spatie/laravel-webhook-client": "^2.0"
},
"require-dev": {
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.2|^9.0"
},
"autoload": {
Expand Down

0 comments on commit 48f8a3f

Please sign in to comment.