Skip to content

Commit d27e560

Browse files
committed
prepare the first release
1 parent 3f1f06b commit d27e560

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
CHANGELOG
22
=========
33

4-
1.0.0
4+
0.1.0
55
-----
66

77
First release of an Experience API client based on the Guzzle HTTP library.
88

9-
**CAUTION**: This is the first and only release of this package and it will no
10-
longer be maintained in the future. Please use the `php-xapi/client` package
11-
instead which provides the same features.
9+
This package replaces the `xabbuh/xapi-client` package which is now deprecated
10+
and should no longer be used.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Xabbuh xApi Client
22
==================
33

4-
[![Build Status](https://travis-ci.org/php-xapi/xapi-client.svg?branch=master)](https://travis-ci.org/php-xapi/xapi-client)
5-
[![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)
6-
[![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)
4+
[![Build Status](https://travis-ci.org/php-xapi/client.svg?branch=master)](https://travis-ci.org/php-xapi/client)
5+
[![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)
6+
[![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)
77

88
Client side PHP implementation of the
99
[Experience API](https://github.com/adlnet/xAPI-Spec/blob/master/xAPI.md).
@@ -14,10 +14,10 @@ Installation
1414
The recommended way to install the xAPI client is using
1515
[Composer](http://getcomposer.org/):
1616

17-
1. Add ``xabbuh/xapi-client`` as a dependency to your project:
17+
1. Add ``php-xapi/client`` as a dependency to your project:
1818

1919
```bash
20-
$ composer require xabbuh/xapi-client
20+
$ composer require php-xapi/client
2121
```
2222

2323
1. Require Composer's autoloader:
@@ -34,7 +34,7 @@ Read the [documentation](doc/index.md) to find out how to use the library.
3434
Issues
3535
------
3636
37-
Report issue in the [issue tracker of the XAPI package](https://github.com/php-xapi/xapi/issues).
37+
Report issues in the [issue tracker of this package](https://github.com/php-xapi/client/issues).
3838
3939
License
4040
-------

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "xabbuh/xapi-client",
2+
"name": "php-xapi/client",
33
"type": "library",
44
"description": "client library for the Experience API (xAPI)",
55
"keywords": ["xAPI", "Experience API", "Tin Can API", "client"],
6-
"homepage": "https://github.com/xabbuh/xapi-client",
6+
"homepage": "https://github.com/php-xapi/client",
77
"license": "MIT",
88
"authors": [
99
{
@@ -21,14 +21,17 @@
2121
"require-dev": {
2222
"php-xapi/test-fixtures": "^0.1.0"
2323
},
24+
"conflict": {
25+
"xabbuh/xapi-client": "*"
26+
},
2427
"autoload": {
2528
"psr-4": {
2629
"Xabbuh\\XApi\\Client\\": ""
2730
}
2831
},
2932
"extra": {
3033
"branch-alias": {
31-
"dev-master": "1.0.x-dev"
34+
"dev-master": "0.1.x-dev"
3235
}
3336
}
3437
}

0 commit comments

Comments
 (0)