forked from RusticiSoftware/TinCanPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "rusticisoftware/tincan",
"type": "library",
"description": "Experience API (Tin Can API) Library",
"homepage": "http://rusticisoftware.github.io/TinCanPHP/",
"keywords": [
"tin can",
"tincan",
"xapi",
"experience api",
"e-learning",
"scorm"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Brian J. Miller",
"email": "brian.miller@tincanapi.com",
"role": "Developer"
}
],
"support": {
"email": "support@tincanapi.com",
"issues": "https://github.com/RusticiSoftware/TinCanPHP/issues"
},
"require": {
"php": "~5.5 || ^7.0.3",
"ext-openssl": "*",
"namshi/jose": "^7.2.1",
"willdurand/negotiation": "^2.0"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit": "@stable"
},
"autoload": {
"psr-4": {
"TinCan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TinCanTest\\": "tests/"
}
}
}