Skip to content

Commit

Permalink
Merge pull request #10 from Laralabs/laravel-8-upgrade
Browse files Browse the repository at this point in the history
Add Laravel 8 Support
  • Loading branch information
clnt authored Oct 13, 2020
2 parents 29521b1 + b860f8a commit f475323
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: php

php:
- 7.2
- 7.3
- 7.4

env:
global:
Expand All @@ -11,6 +11,7 @@ env:
- LARAVEL_VERSION=5.8.*
- LARAVEL_VERSION=6.*
- LARAVEL_VERSION=7.*
- LARAVEL_VERSION=8.*

matrix:
fast_finish: true
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.0.0] - 13-10-2020
### Changed
- Laravel 8.0 compatibility
- PHP 7.3+ required
## [3.0.3] - 26-03-2020
### Changed
- Laravel 7.0 compatibility
Expand Down Expand Up @@ -41,4 +45,4 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
## [1.1.0] - 12-09-2017
### Added
- update() function to mass update previous message properties
- Unit Tests
- Unit Tests
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The toaster package for Laravel provides a quick 'n' easy method for creating to

You can then access them in your favourite JS component or use laralabs-vue-toaster, built for this package.

```
composer require laralabs/toaster
```

## Documentation

Full documentation can be found at the link below:
Expand All @@ -32,4 +36,4 @@ A live demo is available [here](https://toaster.laralabs.uk)
Please raise an issue on GitHub if there is a problem.

## License
This is open-sourced software licensed under the [MIT License](http://opensource.org/licenses/MIT).
This is open-sourced software licensed under the [MIT License](http://opensource.org/licenses/MIT).
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"illuminate/support": "^5.4|^6.0|^7.0",
"illuminate/database": "^5.4|^6.0|^7.0",
"illuminate/contracts": "^5.4|^6.0|^7.0",
"illuminate/session": "^5.4|^6.0|^7.0"
"php": "^7.3",
"illuminate/support": "^5.4|^6.0|^7.0|^8.0",
"illuminate/database": "^5.4|^6.0|^7.0|^8.0",
"illuminate/contracts": "^5.4|^6.0|^7.0|^8.0",
"illuminate/session": "^5.4|^6.0|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.4|^4.0|^5.0",
"orchestra/testbench": "^3.4|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0"
},
"autoload": {
Expand Down

0 comments on commit f475323

Please sign in to comment.