Skip to content

Commit de4f2a0

Browse files
Merge pull request #1 from stackkit/development
Development
2 parents e26c755 + 347bef5 commit de4f2a0

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: [7.4, 7.3, 7.2]
15-
laravel: [7.*, 6.*, 5.8.*, 5.7.*, 5.6.*]
15+
laravel: [8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*]
1616
os: [ubuntu-latest]
1717
include:
18+
- laravel: 8.*
19+
testbench: 6.*
1820
- laravel: 7.*
1921
testbench: 5.*
2022
- laravel: 6.*
@@ -26,6 +28,8 @@ jobs:
2628
- laravel: 5.6.*
2729
testbench: 3.6.*
2830
exclude:
31+
- laravel: 8.*
32+
php: 7.2
2933
- laravel: 5.7.*
3034
php: 7.4
3135
- laravel: 5.6.*

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 1.0.0 - 2020-10-11
8+
9+
**Added**
10+
11+
- Release of the package
12+
713
## 1.0.0-alpha1 - 2020-06-26
814

915
**Added**

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Please check the table below for supported Laravel and PHP versions:
3232
| 5.8 | 7.2 or 7.3 or 7.4
3333
| 6.x | 7.2 or 7.3 or 7.4
3434
| 7.x | 7.2 or 7.3 or 7.4
35+
| 8.x | 7.3 or 7.4
3536

3637
# Installation
3738

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
"ext-json": "*",
1212
"google/cloud-scheduler": "^1.4",
1313
"firebase/php-jwt": "^5.2",
14-
"phpseclib/phpseclib": "~2.0"
14+
"phpseclib/phpseclib": "~2.0",
15+
"laravel/framework": "8.*",
16+
"orchestra/testbench": "6.*"
1517
},
1618
"require-dev": {
1719
"mockery/mockery": "^1.2",
18-
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0",
1920
"symfony/console": "^4.4|^5.0"
2021
},
2122
"autoload": {

0 commit comments

Comments
 (0)