From 8fd60e0ad7695b39897f23735989296eb742e52c Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Thu, 11 Aug 2016 09:50:01 +0200 Subject: [PATCH 1/2] Badge fixes --- README.md | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 5623fc7..62211f1 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,11 @@ -# API Client Foundation for PHP 7.x - -[![Build Status](https://travis-ci.org/php-api-clients/foundation.svg?branch=master)](https://travis-ci.org/php-api-clients/foundation) -[![Latest Stable Version](https://poser.pugx.org/api-clients/foundation/v/stable.png)](https://packagist.org/packages/api-clients/foundation) -[![Total Downloads](https://poser.pugx.org/api-clients/foundation/downloads.png)](https://packagist.org/packages/api-clients/foundation/stats) -[![Code Coverage](https://scrutinizer-ci.com/g/php-api-clients/foundation/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-api-clients/foundation/?branch=master) -[![License](https://poser.pugx.org/api-clients/foundation/license.png)](https://packagist.org/packages/api-clients/foundation) -[![PHP 7 ready](http://php7ready.timesplinter.ch/php-api-clients/foundation/badge.svg)](https://appveyor-ci.org/php-api-clients/foundation) - - -# Goals - -* Foundation for creating synchronous and asynchronous API clients +# API Client Resource for PHP 7.x + +[![Build Status](https://travis-ci.org/php-api-clients/resource.svg?branch=master)](https://travis-ci.org/php-api-clients/foundation) +[![Latest Stable Version](https://poser.pugx.org/api-clients/resource/v/stable.png)](https://packagist.org/packages/api-clients/resource) +[![Total Downloads](https://poser.pugx.org/api-clients/resource/downloads.png)](https://packagist.org/packages/api-clients/resource/stats) +[![Code Coverage](https://scrutinizer-ci.com/g/php-api-clients/resource/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-api-clients/resource/?branch=master) +[![License](https://poser.pugx.org/api-clients/resource/license.png)](https://packagist.org/packages/api-clients/foundation) +[![PHP 7 ready](http://php7ready.timesplinter.ch/php-api-clients/resource/badge.svg)](https://appveyor-ci.org/php-api-clients/resource) # License From d8dea48a2adc6ab1760408ce4bfccc37504f1a9a Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Thu, 11 Aug 2016 09:54:22 +0200 Subject: [PATCH 2/2] Force to dev-master --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b3c89dc..9b9ec9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ matrix: ## Install or update dependencies install: - - export COMPOSER_ROOT_VERSION='dev-'$TRAVIS_BRANCH + - export COMPOSER_ROOT_VERSION='dev-master' - if [ -z "$dependencies" ]; then composer install; fi; - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi; - if [ "$dependencies" = "highest" ]; then composer update -n; fi;