-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "php-xapi/repository-in-memory",
"description": "In-memory implementation of an xAPI (Experience API) repository",
"keywords": ["xAPI", "Tin Can API", "Experience API", "storage", "database", "repository", "in-memory", "memory", "testing"],
"homepage": "https://github.com/php-xapi/repository-in-memory/",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php-xapi/exception": "^0.1",
"php-xapi/model": "^1.0 || ^2.0",
"php-xapi/repository-api": "^0.3 || ^0.4",
"ramsey/uuid": "^2.9 || ^3.0"
},
"minimum-stability": "dev",
"provide": {
"php-xapi/repository-implementation": "0.3"
},
"autoload": {
"psr-4": {
"XApi\\Repository\\InMemory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XApi\\Repository\\InMemory\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}