Skip to content

Commit

Permalink
Merge branch 'mikemand-laravel-8' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
monooso committed Oct 10, 2020
2 parents 7511624 + 3c5fb67 commit e7cc357
Show file tree
Hide file tree
Showing 7 changed files with 1,985 additions and 721 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ filter:
build:
environment:
php:
version: '7.2'
version: '7.3'

nodes:
analysis:
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.2
- 7.3
- 7.4

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

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0] - 2019-09-25
## [[3.0.0] - 2020-10-10](https://github.com/monooso/unobserve/releases/tag/v3.0.0)
### Added
- Support for Laravel 8

### Removed
- Moved support for Laravel 7 to the `2.x` branch

## [[2.0.0] - 2020-03-13](https://github.com/monooso/unobserve/releases/tag/v2.0.0)
### Added
- Support for Laravel 7

### Removed
- Moved support for Laravel 5.8 and 6 to the `1.x` branch

## [[1.0.0] - 2019-09-25](https://github.com/monooso/unobserve/releases/tag/v1.0.0)
### Added
- Initial release
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Select the appropriate branch for your version of Laravel.
|:-------|:-----------------|:------------|
| 1.x | `^5.8`, `^6.0` | `^7.2` |
| 2.x | `^7.0` | `^7.2.5` |
| 3.x | `^8.0` | `^7.3.0` |

Install Unobserve using [Composer](https://getcomposer.org/):

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2.5",
"illuminate/contracts": "^7.0",
"illuminate/support": "^7.0"
"php": "^7.3",
"illuminate/contracts": "^8.0",
"illuminate/support": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
Expand Down
Loading

0 comments on commit e7cc357

Please sign in to comment.