Skip to content

Commit e7cc357

Browse files
committed
Merge branch 'mikemand-laravel-8' into master
2 parents 7511624 + 3c5fb67 commit e7cc357

File tree

7 files changed

+1985
-721
lines changed

7 files changed

+1985
-721
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ filter:
1010
build:
1111
environment:
1212
php:
13-
version: '7.2'
13+
version: '7.3'
1414

1515
nodes:
1616
analysis:

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.2
54
- 7.3
65
- 7.4
76

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file.
33

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

6-
## [1.0.0] - 2019-09-25
6+
## [[3.0.0] - 2020-10-10](https://github.com/monooso/unobserve/releases/tag/v3.0.0)
7+
### Added
8+
- Support for Laravel 8
9+
10+
### Removed
11+
- Moved support for Laravel 7 to the `2.x` branch
12+
13+
## [[2.0.0] - 2020-03-13](https://github.com/monooso/unobserve/releases/tag/v2.0.0)
14+
### Added
15+
- Support for Laravel 7
16+
17+
### Removed
18+
- Moved support for Laravel 5.8 and 6 to the `1.x` branch
19+
20+
## [[1.0.0] - 2019-09-25](https://github.com/monooso/unobserve/releases/tag/v1.0.0)
721
### Added
822
- Initial release

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Select the appropriate branch for your version of Laravel.
2020
|:-------|:-----------------|:------------|
2121
| 1.x | `^5.8`, `^6.0` | `^7.2` |
2222
| 2.x | `^7.0` | `^7.2.5` |
23+
| 3.x | `^8.0` | `^7.3.0` |
2324

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

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"minimum-stability": "dev",
2626
"prefer-stable": true,
2727
"require": {
28-
"php": ">=7.2.5",
29-
"illuminate/contracts": "^7.0",
30-
"illuminate/support": "^7.0"
28+
"php": "^7.3",
29+
"illuminate/contracts": "^8.0",
30+
"illuminate/support": "^8.0"
3131
},
3232
"require-dev": {
3333
"friendsofphp/php-cs-fixer": "^2.15",
34-
"orchestra/testbench": "^5.0",
35-
"phpunit/phpunit": "^8.5",
34+
"orchestra/testbench": "^6.0",
35+
"phpunit/phpunit": "^9.3",
3636
"squizlabs/php_codesniffer": "^3.5"
3737
},
3838
"autoload": {

0 commit comments

Comments
 (0)