Skip to content

Commit 4f23150

Browse files
authored
Add Laravel 8 support (#71)
Add Laravel 8 support
1 parent 3ee25fe commit 4f23150

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.styleci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ disabled:
44
- concat_without_spaces
55
- phpdoc_no_package
66
- logical_not_operators_with_successor_space
7-
- simplified_null_return

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ before_script:
1616
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
1717
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
1818

19+
1920
script:
2021
- ./vendor/bin/phpunit -c phpunit.xml.dist --verbose

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.7.0]
8+
9+
### Added
10+
11+
- ([#71]) Add Laravel 8 support
12+
713
## [1.6.0]
814

915
### Added
@@ -15,7 +21,7 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
1521

1622
### Added
1723

18-
- ([#64]) Add Laravel 7.x support
24+
- ([#64]) Add Laravel 7 support
1925

2026
## [1.5.1]
2127

@@ -77,7 +83,8 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
7783

7884
- Initial release
7985

80-
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.6.0...master
86+
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.7.0...master
87+
[1.7.0]: https://github.com/cybercog/laravel-paket/compare/1.7.0...1.7.0
8188
[1.6.0]: https://github.com/cybercog/laravel-paket/compare/1.5.2...1.6.0
8289
[1.5.2]: https://github.com/cybercog/laravel-paket/compare/1.5.1...1.5.2
8390
[1.5.1]: https://github.com/cybercog/laravel-paket/compare/1.5.0...1.5.1
@@ -87,6 +94,7 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
8794
[1.2.0]: https://github.com/cybercog/laravel-paket/compare/1.1.0...1.2.0
8895
[1.1.0]: https://github.com/cybercog/laravel-paket/compare/1.0.0...1.1.0
8996

97+
[#71]: https://github.com/cybercog/laravel-paket/pull/71
9098
[#68]: https://github.com/cybercog/laravel-paket/pull/68
9199
[#64]: https://github.com/cybercog/laravel-paket/pull/64
92100
[#61]: https://github.com/cybercog/laravel-paket/pull/61

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
"require": {
4141
"php": "^7.1.3",
4242
"ext-json": "*",
43-
"illuminate/support": "^5.6|^6.0|^7.0",
43+
"illuminate/support": "^5.6|^6.0|^7.0|^8.0",
4444
"mcstreetguy/composer-parser": "^1.1"
4545
},
4646
"require-dev": {
4747
"mockery/mockery": "^1.0",
48-
"orchestra/testbench": "^3.6|^4.0|^5.0",
48+
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0",
4949
"phpunit/phpunit": "^7.5|^8.0|^9.0"
5050
},
5151
"autoload": {

0 commit comments

Comments
 (0)