forked from php-xapi/xapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.05 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "xabbuh/xapi",
"type": "library",
"description": "libraries for the Experience API (xAPI) implemented in PHP",
"keywords": ["xAPI", "Experience API", "Tin Can API", "library"],
"homepage": "https://github.com/xabbuh/xapi",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": ">=5.3.0",
"guzzle/guzzle": "~3.7",
"jms/serializer": "~0.16",
"jms/serializer-bundle": "~0.9",
"ramsey/uuid": "~2.8",
"symfony/config": "~2.3",
"symfony/dependency-injection": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/http-foundation": "~2.3",
"symfony/validator": "^2.6.2"
},
"require-dev": {
"doctrine/mongodb-odm": "~1.0",
"doctrine/mongodb-odm-bundle": "~3.0",
"matthiasnoback/symfony-dependency-injection-test": "~0.6",
"phpunit/phpunit": "~4.0",
"symfony/property-access": "~2.3"
},
"replace": {
"xabbuh/xapi-client": "self.version",
"xabbuh/xapi-client-bundle": "self.version",
"xabbuh/xapi-common": "self.version",
"xabbuh/xapi-data-fixtures": "self.version",
"xabbuh/xapi-doctrine-storage": "self.version",
"xabbuh/xapi-lrs-bundle": "self.version",
"xabbuh/xapi-model": "self.version",
"xabbuh/xapi-mongodb-storage-api": "self.version",
"xabbuh/xapi-storage-api": "self.version"
},
"autoload": {
"psr-4": {
"Xabbuh\\XApi\\": "",
"Xabbuh\\XApi\\Model\\": "Model/src/",
"Xabbuh\\XApi\\Serializer\\": "Serializer/src/",
"Xabbuh\\XApi\\Validator\\": "Validator/src/"
}
},
"autoload-dev": {
"psr-4": {
"Xabbuh\\XApi\\Serializer\\Tests\\": "Serializer/tests/",
"Xabbuh\\XApi\\Validator\\Tests\\": "Validator/tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}