Skip to content

Commit 3694fa7

Browse files
authored
Add Laravel v6 support (#32)
Add Laravel v6 support
1 parent 4f68a8c commit 3694fa7

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/node_modules
22
/vendor
33
.php_cs.cache
4+
.phpunit.result.cache
45
composer.lock
56
composer.phar
67
npm-debug.log

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,34 @@
11
# Changelog
22

3-
All notable changes to `laravel-paket` will be documented in this file.
3+
All notable changes to `cybercog/laravel-paket` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.1.0] - 2019-09-04
8+
9+
### Added
10+
11+
- ([#32]) Laravel v6 support
12+
713
### Changed
814

915
- ([#27]) `Http\Controllers` namespace structure became more flat
1016

11-
## Fixed
17+
### Fixed
1218

1319
- ([#28]) Terminal jobs new line breaks
1420

15-
## Security
21+
### Security
1622

1723
- Upgraded `lodash`
1824

1925
## 1.0.0 - 2019-06-30
2026

2127
- Initial release
2228

23-
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.0.0...master
29+
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.1.0...master
30+
[1.1.0]: https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0
2431

32+
[#32]: https://github.com/cybercog/laravel-paket/pull/32
2533
[#28]: https://github.com/cybercog/laravel-paket/pull/28
2634
[#27]: https://github.com/cybercog/laravel-paket/pull/27

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Paket exposes a dashboard at `/paket`. By default, you will only be able to acce
5454

5555
## License
5656

57-
- `Laravel Paket` package is open-sourced software licensed under the [MIT License](LICENSE) by [Anton Komarev](https://komarev.com).
57+
- `Laravel Paket` package is open-sourced software licensed under the [MIT License](LICENSE) by [Anton Komarev].
5858
- `Shipping` logo image licensed under [Creative Commons 3.0](https://creativecommons.org/licenses/by/3.0/us/) by Gan Khoon Lay.
5959

6060
## About CyberCog
@@ -64,3 +64,5 @@ Paket exposes a dashboard at `/paket`. By default, you will only be able to acce
6464
- [Follow us on Twitter](https://twitter.com/cybercog)
6565

6666
<a href="https://cybercog.ru"><img src="https://cloud.githubusercontent.com/assets/1849174/18418932/e9edb390-7860-11e6-8a43-aa3fad524664.png" alt="CyberCog"></a>
67+
68+
[Anton Komarev]: https://komarev.com

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
"require": {
4141
"php": "^7.1.3",
4242
"ext-json": "*",
43-
"illuminate/support": "5.6.*|5.7.*|5.8.*",
43+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
4444
"mcstreetguy/composer-parser": "^1.0"
4545
},
4646
"require-dev": {
4747
"friendsofphp/php-cs-fixer": "^2.10",
4848
"mockery/mockery": "^1.0",
49-
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0",
49+
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0",
5050
"phpunit/phpunit": "^7.5|^8.0"
5151
},
5252
"autoload": {

0 commit comments

Comments
 (0)