-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.14 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
40
41
{
"name": "php-xapi/repository-doctrine-orm",
"description": "Doctrine based ORM implementations of an Experience API (xAPI) repository",
"keywords": ["xAPI", "Tin Can API", "Experience API", "storage", "database", "repository", "entity", "Doctrine", "ORM"],
"homepage": "https://github.com/php-xapi/repository-orm/",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": "^5.6 || ^7.0",
"doctrine/orm": "^2.3",
"php-xapi/repository-api": "^0.4",
"php-xapi/repository-doctrine": "^0.4"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4 || ^4.0"
},
"provide": {
"php-xapi/repository-implementation": "0.3"
},
"autoload": {
"psr-4": {
"XApi\\Repository\\ORM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XApi\\Repository\\ORM\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}