Skip to content

Commit ffb8174

Browse files
committed
prepare the first release
1 parent e7a74ac commit ffb8174

File tree

3 files changed

+20
-31
lines changed

3 files changed

+20
-31
lines changed

CHANGELOG.md

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +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-storage-api` with its
11-
`php-xapi/repository-api` replacement
12-
13-
* replaced dependency on `xabbuh/xapi-data-fixtures` with its
14-
`php-xapi/test-fixtures` replacement and moved it to the `require-dev`
15-
section
16-
17-
**CAUTION**: This is the last release of this package and it will no longer be
18-
maintained in the future. Please use the `php-xapi/repository-doctrine` package
19-
instead which provides the same features.
20-
214
0.1.0
225
-----
236

247
First release providing common functions for Doctrine based xAPI learning
258
record store backends.
9+
10+
This package replaces the `xabbuh/xapi-doctrine-storage` package which is now
11+
deprecated and should no longer be used.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
Common Doctrine Based xAPI Storage Classes
2-
==========================================
1+
Common Doctrine Based xAPI Repository Classes
2+
=============================================
33

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

8-
Common classes for Doctrine based [xAPI storage](https://github.com/php-xapi/xapi-storage-api/)
8+
Common classes for Doctrine based [xAPI repository](https://github.com/php-xapi/repository-api/)
99
implementations.
1010

1111
Existing implementations:
1212

13-
* [MongoDB](https://github.com/php-xapi/xapi-mongodb-storage/)
13+
* [MongoDB](https://github.com/php-xapi/repository-mongodb/)

composer.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "xabbuh/xapi-doctrine-storage",
3-
"description": "common classes for Doctrine based driver implementations of an xAPI storage",
2+
"name": "php-xapi/repository-doctrine",
3+
"description": "common classes for Doctrine based implementations of an xAPI repository",
44
"keywords": ["xAPI", "Tin Can API", "Experience API", "storage", "database", "repository", "document", "Doctrine"],
5-
"homepage": "https://github.com/php-xapi/xapi-doctrine-storage/",
5+
"homepage": "https://github.com/php-xapi/repository-doctrine/",
66
"license": "MIT",
77
"authors": [
88
{
@@ -12,11 +12,14 @@
1212
],
1313
"require": {
1414
"doctrine/common": "~2.4",
15-
"php-xapi/model": "~0.1",
16-
"php-xapi/repository-api": "~0.1"
15+
"php-xapi/model": "^0.1.0",
16+
"php-xapi/repository-api": "^0.1.0"
1717
},
1818
"require-dev": {
19-
"php-xapi/test-fixtures": "~0.1"
19+
"php-xapi/test-fixtures": "^0.1.0"
20+
},
21+
"conflict": {
22+
"xabbuh/xapi-doctrine-storage": "*"
2023
},
2124
"autoload": {
2225
"psr-4": {
@@ -25,7 +28,7 @@
2528
},
2629
"extra": {
2730
"branch-alias": {
28-
"dev-master": "0.2.x-dev"
31+
"dev-master": "0.1.x-dev"
2932
}
3033
}
3134
}

0 commit comments

Comments
 (0)