-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 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
{
"name": "xabbuh/xapi-validator",
"type": "library",
"description": "Experience API model validator",
"keywords": ["xAPI", "Experience API", "Tin Can API", "validator", "validation"],
"homepage": "https://github.com/php-xapi/xapi-validator",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": ">=5.3.0",
"php-xapi/model": "~0.1",
"symfony/config": "~2.3",
"symfony/validator": "^2.6.2"
},
"require-dev": {
"doctrine/annotations": "~1.0",
"php-xapi/test-fixtures": "~0.1",
"symfony/property-access": "~2.3"
},
"autoload": {
"psr-4": {
"Xabbuh\\XApi\\Validator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xabbuh\\XApi\\Validator\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}