Skip to content

Commit aad14cb

Browse files
committed
A few composer cleanups
1 parent b091270 commit aad14cb

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ Laravel Likeable Plugin
33

44
Important Note: As of version 1.2 I renamed `Conner\Likeable\LikeableTrait` to `Conner\Likeable\Likeable`
55

6-
[![Build Status](https://travis-ci.org/rtconner/laravel-likeable.svg?branch=laravel-7)](https://travis-ci.org/rtconner/laravel-likeable)
6+
[![Build Status](https://travis-ci.org/rtconner/laravel-likeable.svg?branch=laravel-8)](https://travis-ci.org/rtconner/laravel-likeable)
77
[![Latest Stable Version](https://poser.pugx.org/rtconner/laravel-likeable/v/stable.svg)](https://packagist.org/packages/rtconner/laravel-likeable)
88
[![License](https://poser.pugx.org/rtconner/laravel-likeable/license.svg)](https://packagist.org/packages/rtconner/laravel-likeable)
99

1010
Trait for Laravel Eloquent models to allow easy implementation of a "like" or "favorite" or "remember" feature.
1111

12-
[Laravel 5/6/7/8 Documentation](https://github.com/rtconner/laravel-likeable/tree/laravel-7)
12+
[Laravel 5/6/7/8 Documentation](https://github.com/rtconner/laravel-likeable/tree/laravel-8)
1313
[Laravel 4 Documentation](https://github.com/rtconner/laravel-likeable/tree/laravel-4)
1414

1515
#### Composer Install

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=5.6.0",
15-
"illuminate/database": ">=5.0|^6.0|^7.0|^8.0",
16-
"illuminate/support": ">=5.0|^6.0|^7.0|^8.0"
14+
"php": "^7.3",
15+
"illuminate/database": ">=8.0",
16+
"illuminate/support": ">=8.0"
1717
},
1818
"require-dev": {
19-
"orchestra/testbench": "5.*|6.*",
20-
"phpunit/phpunit": "8.*|9.*",
19+
"orchestra/testbench": "6.*",
20+
"phpunit/phpunit": "9.*",
2121
"mockery/mockery": "1.*"
2222
},
2323
"autoload": {
@@ -48,5 +48,6 @@
4848
]
4949
}
5050
},
51-
"minimum-stability": "dev"
51+
"minimum-stability": "dev",
52+
"prefer-stable": true
5253
}

0 commit comments

Comments
 (0)