diff --git a/CHANGELOG.md b/CHANGELOG.md index 500244a..396ab92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 7ea259a..67cb695 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/composer.json b/composer.json index cf5c0ba..8b8057d 100644 --- a/composer.json +++ b/composer.json @@ -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": [ { @@ -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/" @@ -34,7 +37,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.2.x-dev" + "dev-master": "0.1.x-dev" } } }