Skip to content

Commit 4ce1c9d

Browse files
authored
Merge pull request #17 from SoapBox/change/add-badges
[Change] Adds Travis, Coveralls, and CodeClimate Badges
2 parents 9037f94 + d20e5b4 commit 4ce1c9d

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ before_script: composer install
77

88
script:
99
- vendor/bin/phpunit
10+
11+
after_script:
12+
- mkdir -p build/logs
13+
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
14+
- php vendor/bin/coveralls -v

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"require-dev": {
2222
"mockery/mockery": "^0.9.9",
2323
"orchestra/testbench": "^3.4",
24-
"phpunit/phpunit": "^6.0"
24+
"phpunit/phpunit": "^6.0",
25+
"satooshi/php-coveralls": "^1.0"
2526
},
2627
"autoload": {
2728
"psr-4": {

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Signed Requests
22

3+
[![Build Status](https://travis-ci.org/SoapBox/SignedRequests.svg?branch=master)](https://travis-ci.org/SoapBox/SignedRequests) [![Coverage Status](https://coveralls.io/repos/github/SoapBox/SignedRequests/badge.svg?branch=master)](https://coveralls.io/github/SoapBox/SignedRequests?branch=master) [![Code Climate](https://codeclimate.com/github/SoapBox/SignedRequests/badges/gpa.svg)](https://codeclimate.com/github/SoapBox/SignedRequests)
4+
35
A wrapper to add the ability to accept signed requests to a Laravel project.
46

57
## Installation

0 commit comments

Comments
 (0)