forked from php-xapi/repository-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
39
{
"name": "php-xapi/repository-doctrine",
"description": "common classes for Doctrine based implementations of an xAPI repository",
"keywords": ["xAPI", "Tin Can API", "Experience API", "storage", "database", "repository", "document", "Doctrine"],
"homepage": "https://github.com/php-xapi/repository-doctrine/",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"doctrine/common": "~2.4",
"php-xapi/model": "^1.0",
"php-xapi/repository-api": "^0.3@dev"
},
"require-dev": {
"php-xapi/test-fixtures": "^1.0"
},
"conflict": {
"xabbuh/xapi-doctrine-storage": "*"
},
"autoload": {
"psr-4": {
"XApi\\Repository\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XApi\\Repository\\Doctrine\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}