Skip to content

Commit 54f569e

Browse files
committed
prepare the first release
1 parent 54588ad commit 54f569e

3 files changed

Lines changed: 15 additions & 27 deletions

File tree

CHANGELOG.md

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

4-
0.2.0
5-
-----
6-
7-
* replaced dependency on `xabbuh/xapi-model` with its `php-xapi/model`
8-
replacement
9-
10-
* replaced dependency on `xabbuh/xapi-data-fixtures` with its
11-
`php-xapi/test-fixtures` replacement
12-
13-
**CAUTION**: This is the last release of this package and it will no longer be
14-
maintained in the future. Please use the `php-xapi/serializer` package instead
15-
which provides the same features.
16-
17-
0.1.1
18-
-----
19-
20-
* fix lowest required version of the model package
21-
224
0.1.0
235
-----
246

257
First release leveraging the JMS serializer library to convert xAPI model
268
objects into JSON strings confirming to the xAPI specs and vice versa.
9+
10+
This package replaces the `xabbuh/xapi-serializer` package which is now deprecated
11+
and should no longer be used.

README.md

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

4-
[![Build Status](https://travis-ci.org/php-xapi/xapi-serializer.svg?branch=master)](https://travis-ci.org/php-xapi/xapi-serializer)
5-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-xapi/xapi-serializer/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/xapi-serializer/?branch=master)
6-
[![Code Coverage](https://scrutinizer-ci.com/g/php-xapi/xapi-serializer/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/xapi-serializer/?branch=master)
4+
[![Build Status](https://travis-ci.org/php-xapi/serializer.svg?branch=master)](https://travis-ci.org/php-xapi/serializer)
5+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-xapi/serializer/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/serializer/?branch=master)
6+
[![Code Coverage](https://scrutinizer-ci.com/g/php-xapi/serializer/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-xapi/serializer/?branch=master)
77

8-
Serialize and deserialize [Experience API](https://github.com/adlnet/xAPI-Spec/blob/master/xAPI.md)
9-
model objects.
8+
Transform [Experience API](https://github.com/adlnet/xAPI-Spec/blob/master/xAPI.md)
9+
model objects into JSON strings conforming to the API specs and vice versa.

composer.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "xabbuh/xapi-serializer",
2+
"name": "php-xapi/serializer",
33
"type": "library",
4-
"description": "Experience API model serializer",
4+
"description": "transform Experience API model objects to JSON strings and vice versa",
55
"keywords": ["xAPI", "Experience API", "Tin Can API", "serializer"],
6-
"homepage": "https://github.com/php-xapi/xapi-serializer",
6+
"homepage": "https://github.com/php-xapi/serializer",
77
"license": "MIT",
88
"authors": [
99
{
@@ -19,6 +19,9 @@
1919
"require-dev": {
2020
"php-xapi/test-fixtures": "~0.1"
2121
},
22+
"conflict": {
23+
"xabbuh/xapi-serializer": "*"
24+
},
2225
"autoload": {
2326
"psr-4": {
2427
"Xabbuh\\XApi\\Serializer\\": "src/"
@@ -31,7 +34,7 @@
3134
},
3235
"extra": {
3336
"branch-alias": {
34-
"dev-master": "0.2.x-dev"
37+
"dev-master": "0.1.x-dev"
3538
}
3639
}
3740
}

0 commit comments

Comments
 (0)