Skip to content

Commit

Permalink
Badges (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaytrase committed May 12, 2016
1 parent c3f01aa commit 055f1b3
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
build:
tests:
override:
-
command: phpunit --coverage-clover=build/clover.xml
coverage:
file: build/clover.xml
format: php-clover
35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
language: php

php:
- 5.5
- 5.6
- 7
- nightly
- hhvm

env:
- SYMFONY_VERSION='2.7.*' deps='no'
- SYMFONY_VERSION='2.8.*' deps='no'
- SYMFONY_VERSION='3.0.*' deps='no'
- SYMFONY_VERSION='~3.0@dev' deps='no'

matrix:
include:
- php: 5.5
env: SYMFONY_VERSION='2.7.*' deps='low'

allow_failures:
- php: hhvm
- php: nightly

before_install:
- travis_retry composer self-update

install:
- composer require --no-update symfony/symfony=${SYMFONY_VERSION}
- if [ "$deps" = "no" ]; then composer --prefer-source install; fi;
- if [ "$deps" = "low" ]; then composer --prefer-source --prefer-lowest --prefer-stable update; fi;

script:
- mkdir -p build
- phpunit --colors -c phpunit.xml --coverage-text
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[![Latest Stable Version](https://poser.pugx.org/bankiru/rpc-server-bundle/v/stable)](https://packagist.org/packages/bankiru/rpc-server-bundle)
[![Total Downloads](https://poser.pugx.org/bankiru/rpc-server-bundle/downloads)](https://packagist.org/packages/bankiru/rpc-server-bundle)
[![Latest Unstable Version](https://poser.pugx.org/bankiru/rpc-server-bundle/v/unstable)](https://packagist.org/packages/bankiru/rpc-server-bundle)
[![License](https://poser.pugx.org/bankiru/rpc-server-bundle/license)](https://packagist.org/packages/bankiru/rpc-server-bundle)

[![Build Status](https://travis-ci.org/bankiru/rpc-server-bundle.svg)](https://travis-ci.org/bankiru/rpc-server-bundle)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/bankiru/rpc-server-bundle/badges/quality-score.png)](https://scrutinizer-ci.com/g/bankiru/rpc-server-bundle/)
[![Code Coverage](https://scrutinizer-ci.com/g/bankiru/rpc-server-bundle/badges/coverage.png)](https://scrutinizer-ci.com/g/bankiru/rpc-server-bundle/)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/53b98f25-6b08-43b2-9ebe-e2d83e17b868/mini.png)](https://insight.sensiolabs.com/projects/53b98f25-6b08-43b2-9ebe-e2d83e17b868)

# HTTP RPC Server bundle

This bundle provides default controller realisation to handle RPC
Expand Down

0 comments on commit 055f1b3

Please sign in to comment.