Skip to content

Commit 48f8a3f

Browse files
authored
Merge pull request #7 from binary-cats/patch-1
Update dependencies to support Laravel 8
2 parents 502bc80 + 1991ef0 commit 48f8a3f

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

.github/workflows/laravel.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Laravel
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
laravel-tests:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Copy .env
17+
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
18+
- name: Install Dependencies
19+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
20+
- name: Execute tests (Unit and Feature tests) via PHPUnit
21+
run: vendor/bin/phpunit

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## 1.2.0 - 2020-11-07
6+
7+
- Update dependencies to support Laravel 8
8+
- Add Github tests
9+
- Joe Biden will be 46th president of USA
10+
511
## 1.0.0 - 2020-01-27
612

713
- initial release

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
],
2121
"require": {
2222
"php": "^7.2",
23-
"illuminate/support": "~5.8.0|^6.0|^7.0",
23+
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
2424
"spatie/laravel-webhook-client": "^2.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
27+
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0",
2828
"phpunit/phpunit": "^8.2|^9.0"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)