44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
PHP xApi (Experience API) Client
|
|
================================
|
|
|
|
[](https://travis-ci.org/php-xapi/client)
|
|
[](https://scrutinizer-ci.com/g/php-xapi/client/?branch=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).
|
|
|
|
Installation
|
|
------------
|
|
|
|
The recommended way to install the xAPI client is using
|
|
[Composer](http://getcomposer.org/):
|
|
|
|
1. Add ``php-xapi/client`` as a dependency to your project:
|
|
|
|
```bash
|
|
$ composer require php-xapi/client
|
|
```
|
|
|
|
1. Require Composer's autoloader:
|
|
|
|
``` php
|
|
require __DIR__.'/vendor/autoload.php';
|
|
```
|
|
|
|
Usage
|
|
-----
|
|
|
|
Read the [documentation](doc/index.md) to find out how to use the library.
|
|
|
|
Issues
|
|
------
|
|
|
|
Report issues in the [issue tracker of this package](https://github.com/php-xapi/client/issues).
|
|
|
|
License
|
|
-------
|
|
|
|
This package is under the MIT license. See the complete license in the
|
|
[LICENSE](LICENSE) file.
|