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 20, 2016
1 parent 3643035 commit b280b77
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 27 deletions.
21 changes: 3 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,11 @@
CHANGELOG
=========

0.2.0
-----

* replaced dependency on `xabbuh/xapi-model` with its `php-xapi/model`
replacement

* replaced dependency on `xabbuh/xapi-data-fixtures` with its
`php-xapi/test-fixtures` replacement

**CAUTION**: This is the last release of this package and it will no longer be
maintained in the future. Please use the `php-xapi/validation` package instead
which provides the same features.

0.1.1
-----

* fix lowest required version of `xabbuh/xapi-model`

0.1.0
-----

First release containing validation rules to verify that xAPI statements and
related objects fulfill the requirements given by the API specs.

This package replaces the `xabbuh/xapi-validator` package which is now
deprecated and should no longer be used.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
xApi Validator
==============
xApi Validation
===============

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

Validate [Experience API](https://github.com/adlnet/xAPI-Spec/blob/master/xAPI.md)
model objects.
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "xabbuh/xapi-validator",
"name": "php-xapi/validation",
"type": "library",
"description": "Experience API model validator",
"description": "Experience API domain object validation",
"keywords": ["xAPI", "Experience API", "Tin Can API", "validator", "validation"],
"homepage": "https://github.com/php-xapi/xapi-validator",
"homepage": "https://github.com/php-xapi/validation",
"license": "MIT",
"authors": [
{
Expand All @@ -22,6 +22,9 @@
"php-xapi/test-fixtures": "~0.1",
"symfony/property-access": "~2.3"
},
"conflict": {
"xabbuh/xapi-validator": "*"
},
"autoload": {
"psr-4": {
"Xabbuh\\XApi\\Validator\\": "src/"
Expand All @@ -34,7 +37,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
"dev-master": "0.1.x-dev"
}
}
}

0 comments on commit b280b77

Please # to comment.