From d27e560d9695c10a893dcce89d195572be1f9e82 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 21 Mar 2016 12:11:42 +0100 Subject: [PATCH] prepare the first release --- CHANGELOG.md | 7 +++---- README.md | 12 ++++++------ composer.json | 9 ++++++--- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98811d5..ffeb284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ CHANGELOG ========= -1.0.0 +0.1.0 ----- First release of an Experience API client based on the Guzzle HTTP library. -**CAUTION**: This is the first and only release of this package and it will no -longer be maintained in the future. Please use the `php-xapi/client` package -instead which provides the same features. +This package replaces the `xabbuh/xapi-client` package which is now deprecated +and should no longer be used. diff --git a/README.md b/README.md index cf1b43f..d67a4e8 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ Xabbuh xApi Client ================== -[![Build Status](https://travis-ci.org/php-xapi/xapi-client.svg?branch=master)](https://travis-ci.org/php-xapi/xapi-client) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-xapi/xapi-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/xapi-client/?branch=master) -[![Code Coverage](https://scrutinizer-ci.com/g/php-xapi/xapi-client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/xapi-client/?branch=master) +[![Build Status](https://travis-ci.org/php-xapi/client.svg?branch=master)](https://travis-ci.org/php-xapi/client) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-xapi/client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/client/?branch=master) +[![Code Coverage](https://scrutinizer-ci.com/g/php-xapi/client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/client/?branch=master) Client side PHP implementation of the [Experience API](https://github.com/adlnet/xAPI-Spec/blob/master/xAPI.md). @@ -14,10 +14,10 @@ Installation The recommended way to install the xAPI client is using [Composer](http://getcomposer.org/): -1. Add ``xabbuh/xapi-client`` as a dependency to your project: +1. Add ``php-xapi/client`` as a dependency to your project: ```bash - $ composer require xabbuh/xapi-client + $ composer require php-xapi/client ``` 1. Require Composer's autoloader: @@ -34,7 +34,7 @@ Read the [documentation](doc/index.md) to find out how to use the library. Issues ------ -Report issue in the [issue tracker of the XAPI package](https://github.com/php-xapi/xapi/issues). +Report issues in the [issue tracker of this package](https://github.com/php-xapi/client/issues). License ------- diff --git a/composer.json b/composer.json index cf21520..e04ba0c 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { - "name": "xabbuh/xapi-client", + "name": "php-xapi/client", "type": "library", "description": "client library for the Experience API (xAPI)", "keywords": ["xAPI", "Experience API", "Tin Can API", "client"], - "homepage": "https://github.com/xabbuh/xapi-client", + "homepage": "https://github.com/php-xapi/client", "license": "MIT", "authors": [ { @@ -21,6 +21,9 @@ "require-dev": { "php-xapi/test-fixtures": "^0.1.0" }, + "conflict": { + "xabbuh/xapi-client": "*" + }, "autoload": { "psr-4": { "Xabbuh\\XApi\\Client\\": "" @@ -28,7 +31,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "0.1.x-dev" } } }