Skip to content

Commit 4c2f72f

Browse files
committed
Fix travis to skip php 7.2
1 parent aad14cb commit 4c2f72f

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
language: php
22

33
php:
4-
- 7.2
4+
- 7.3
55
- 7.4
66

77
before_script:
88
- travis_retry composer self-update
99
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install
1010

11-
script: vendor/bin/phpunit --verbose
11+
script:
12+
vendor/bin/phpunit --verbose
1213

1314
notifications:
1415
email:

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
Laravel Likeable Plugin
22
============
33

4-
Important Note: As of version 1.2 I renamed `Conner\Likeable\LikeableTrait` to `Conner\Likeable\Likeable`
5-
64
[![Build Status](https://travis-ci.org/rtconner/laravel-likeable.svg?branch=laravel-8)](https://travis-ci.org/rtconner/laravel-likeable)
75
[![Latest Stable Version](https://poser.pugx.org/rtconner/laravel-likeable/v/stable.svg)](https://packagist.org/packages/rtconner/laravel-likeable)
86
[![License](https://poser.pugx.org/rtconner/laravel-likeable/license.svg)](https://packagist.org/packages/rtconner/laravel-likeable)
97

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

12-
[Laravel 5/6/7/8 Documentation](https://github.com/rtconner/laravel-likeable/tree/laravel-8)
13-
[Laravel 4 Documentation](https://github.com/rtconner/laravel-likeable/tree/laravel-4)
14-
1510
#### Composer Install
1611

1712
composer require rtconner/laravel-likeable

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"require-dev": {
1919
"orchestra/testbench": "6.*",
2020
"phpunit/phpunit": "9.*",
21-
"mockery/mockery": "1.*"
21+
"mockery/mockery": "1.*",
22+
"squizlabs/php_codesniffer": "3.*"
2223
},
2324
"autoload": {
2425
"psr-4": {

0 commit comments

Comments
 (0)