Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
5ee80e2
add support for groups and submission review
MartinLenord Jun 3, 2020
b124206
move regx to constant
MartinLenord Jun 3, 2020
3a192de
Merge pull request #47 from IMSGlobal/groups_and_sub_review
MartinLenord Jun 3, 2020
218719f
Merge branch 'master' into master
dbhynds Jun 8, 2020
35e10f6
rename constants
dbhynds Jun 8, 2020
955395a
Merge branch 'master' of https://github.com/IMSGlobal/lti-1-3-php-lib…
dbhynds Dec 22, 2020
00d8049
Merge branch 'master' of https://github.com/dbhynds/lti-1-3-php-libra…
dbhynds Dec 22, 2020
4e53ba8
Rename everything to have name schemes appropriate for autoloading
dbhynds Dec 22, 2020
68502e1
rename all method names according psr-1
dbhynds Dec 22, 2020
d724dbe
Add automated tests
dbhynds Dec 22, 2020
fccb497
fix indendation
dbhynds Dec 23, 2020
0dbf00f
Import interfaces
dbhynds Dec 23, 2020
d8e0de8
Add basic tests that just instantiate objects and are currently failing
dbhynds Dec 23, 2020
6b00be4
Fix tests
dbhynds Dec 23, 2020
2d12f26
Add a registration interface
dbhynds Dec 23, 2020
c2fb951
Fully test jwks and tidy up services
dbhynds Dec 23, 2020
07cd970
Rename Namespace
dbhynds Dec 23, 2020
8e1bcc5
fix method call
dbhynds Dec 23, 2020
1d3d5ba
fix missing import
dbhynds Dec 23, 2020
88f6c5e
fix find/replace error
dbhynds Dec 23, 2020
be90976
add more robust tests
dbhynds Dec 23, 2020
8f7649b
add more tests
dbhynds Dec 23, 2020
3566b0a
add more tests
dbhynds Jan 4, 2021
a772cf1
add more tests
dbhynds Jan 6, 2021
8d2478f
add more tests
dbhynds Jan 6, 2021
842c3fa
add more tests
dbhynds Jan 6, 2021
8203a2b
add more tests
dbhynds Jan 6, 2021
ffac0fb
add more tests
dbhynds Jan 6, 2021
eb1350b
implement certification suite tests
dbhynds Jan 6, 2021
7589144
fix a few references to the class name instead of LTI
dbhynds Jan 6, 2021
de9d761
Update the readme
dbhynds Jan 7, 2021
7eab3f3
Update the readme
dbhynds Jan 7, 2021
2047ef1
Add Laravel implementation guide
dbhynds Jan 7, 2021
be8596f
Tidy up docs and correct todos
dbhynds Jan 7, 2021
30a8efe
Update comments
dbhynds Jan 7, 2021
181a72e
Update readme
dbhynds Jan 7, 2021
ff0254e
Add one more constant
dbhynds Jan 8, 2021
1f3ca6e
update readme
dbhynds Jan 8, 2021
20e8b61
update readme
dbhynds Jan 8, 2021
02447b4
PR Feedback
dbhynds Jan 8, 2021
08b4dbf
Add sub roles
dbhynds Jan 8, 2021
f2aca27
PR Feedback
dbhynds Jan 11, 2021
7587b4e
Throw exception
dbhynds Jan 11, 2021
50b454c
Fix tests
dbhynds Jan 12, 2021
583bf2d
Fix caps typo
dbhynds Jan 13, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
vendor
composer.phar
composer.lock
src/game_example/db/keys/*
src/game_example/db/configs/local.json
.env
.DS_Store
.idea
.phpunit.result.cache

build
composer.lock
composer.phar
tests/_output/*
tests/_support/_generated/*
vendor

# ignore the coverage folders
**/coverage
Loading