Skip to content

Commit 35fd90a

Browse files
authored
Merge pull request #43 from codebyray/develop
Develop
2 parents f1e9c5c + 3335d5a commit 35fd90a

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.travis.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
os:
2+
- linux
3+
4+
language: php
5+
6+
php:
7+
- '7.3'
8+
- '8.0'
9+
- '8.1'
10+
11+
env:
12+
- LARAVEL_VERSION=7.*
13+
- LARAVEL_VERSION=8.*
14+
- LARAVEL_VERSION=9.*
15+
16+
matrix:
17+
fast_finish: true
18+
exclude:
19+
- php: 7.3
20+
env: LARAVEL_VERSION=8.*
21+
- php: 7.3
22+
env: LARAVEL_VERSION=9.*
23+
- php: 8.0
24+
env: LARAVEL_VERSION=7.*
25+
- php: 8.1
26+
env: LARAVEL_VERSION=7.*
27+
28+
before_script:
29+
- travis_retry composer self-update
30+
- travis_retry composer install --prefer-source --no-interaction
31+
- if [ "$LARAVEL_VERSION" != "" ]; then composer require --dev "laravel/laravel:${LARAVEL_VERSION}" --no-update; fi;
32+
- travis_retry composer update
33+
34+
cache:
35+
directories:
36+
- vendor
37+
38+
script:
39+
- vendor/bin/phpunit --coverage-text

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Laravel Review Rateable
2+
<img alt="Packagist Downloads" src="https://img.shields.io/packagist/dt/codebyray/laravel-review-rateable">
3+
<img alt="GitHub" src="https://img.shields.io/github/license/codebyray/laravel-review-rateable">
4+
<img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/codebyray/laravel-review-rateable">
5+
<img alt="TravisCI" src="https://api.travis-ci.com/codebyray/laravel-review-rateable.svg?branch=master">
6+
27
Review Rateable system for laravel 6, 7, 8 & 9. You can rate your models by:
38
- Overall Rating
49
- Customer Service Rating

0 commit comments

Comments
 (0)