-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
47 lines (47 loc) · 1.41 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
{
"name": "php-xapi/symfony-serializer",
"type": "library",
"description": "transform Experience API model objects to JSON encoded strings and vice versa using the Symfony Serializer component",
"keywords": ["xAPI", "Experience API", "Tin Can API", "serializer", "Symfony"],
"homepage": "https://github.com/php-xapi/symfony-serializer",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": "^7.1",
"php-xapi/exception": "^0.2.0",
"php-xapi/model": "^1.2 || ^2.1 || ^3.0",
"php-xapi/serializer": "^2.1.1",
"symfony/serializer": "^4.4 || ^5.2"
},
"require-dev": {
"php-xapi/json-test-fixtures": "^2.0",
"php-xapi/test-fixtures": "^1.0",
"phpspec/phpspec": "~2.3",
"symfony/phpunit-bridge": "^5.2"
},
"minimum-stability": "dev",
"provide": {
"php-xapi/serializer-implementation": "2.0"
},
"autoload": {
"psr-4": {
"Xabbuh\\XApi\\Serializer\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Xabbuh\\XApi\\Serializer\\Symfony\\": "spec/",
"Xabbuh\\XApi\\Serializer\\Symfony\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}