Skip to content

Commit 96ec65f

Browse files
committed
prepare the first release
1 parent a6b2cf4 commit 96ec65f

File tree

4 files changed

+18
-28
lines changed

4 files changed

+18
-28
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ matrix:
1919
install:
2020
- composer install
2121

22-
script: phpunit --version
22+
script:
23+
- find -name '*.php' -not -path './vendor/*' -name '*.php' | xargs -n1 php -l

CHANGELOG.md

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,10 @@
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/repository-api` package
15-
instead 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

25-
First release defining a base API for LRS storage backends.
7+
First release defining a common interface for LRS repository backends.
8+
9+
This package replaces the `xabbuh/xapi-storage-api` package which is now
10+
deprecated and should no longer be used.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
xAPI Storage API
2-
================
1+
Common API for Experience API Repository Implementations
2+
========================================================
33

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

6-
Definition of an Experience API storage interface.
7+
This package defines a common interface for various xAPI repository backends.

composer.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "xabbuh/xapi-storage-api",
3-
"description": "abstract definition of an xAPI storage interface",
2+
"name": "php-xapi/repository-api",
3+
"description": "abstract definition of an xAPI repository interface",
44
"keywords": ["xAPI", "Tin Can API", "Experience API", "storage", "database", "repository"],
5-
"homepage": "https://github.com/php-xapi/xapi-storage-api",
5+
"homepage": "https://github.com/php-xapi/repository-api",
66
"license": "MIT",
77
"authors": [
88
{
@@ -17,14 +17,17 @@
1717
"require-dev": {
1818
"php-xapi/test-fixtures": "~0.1"
1919
},
20+
"conflict": {
21+
"xabbuh/xapi-storage-api": "*"
22+
},
2023
"autoload": {
2124
"psr-4": {
2225
"Xabbuh\\XApi\\Storage\\Api\\": ""
2326
}
2427
},
2528
"extra": {
2629
"branch-alias": {
27-
"dev-master": "0.2.x-dev"
30+
"dev-master": "0.1.x-dev"
2831
}
2932
}
3033
}

0 commit comments

Comments
 (0)