Skip to content

Commit

Permalink
prepare the first release
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Mar 21, 2016
1 parent 3f1f06b commit d27e560
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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).
Expand All @@ -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:
Expand All @@ -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
-------
Expand Down
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand All @@ -21,14 +21,17 @@
"require-dev": {
"php-xapi/test-fixtures": "^0.1.0"
},
"conflict": {
"xabbuh/xapi-client": "*"
},
"autoload": {
"psr-4": {
"Xabbuh\\XApi\\Client\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
"dev-master": "0.1.x-dev"
}
}
}

0 comments on commit d27e560

Please sign in to comment.