forked from huddledigital/laravel-lti
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "arietissoftware/laravel-lti",
"version" : "2.0.1",
"description": "A Laravel implementation for the LTI Tool Provider Library",
"keywords": [
"lti", "imsglobal"
],
"license": "MIT",
"authors": [
{
"name": "Robert Boes",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": {
"arietissoftware/lti": {
"type": "github",
"url": "https://github.com/arietissoftware/LTI-Tool-Provider-Library-PHP.git"
}
},
"require": {
"php": "^7.2",
"arietissoftware/lti": "^3.0.3"
},
"autoload": {
"psr-4": {
"RobertBoes\\LaravelLti\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"RobertBoes\\LaravelLti\\Providers\\LtiServiceProvider"
],
"aliases": {
"lti": "RobertBoes\\LaravelLti\\Facades\\LaravelLti"
}
}
}
}