-
Notifications
You must be signed in to change notification settings - Fork 594
Expand file tree
/
Copy pathlibraries.json
More file actions
1401 lines (1401 loc) · 49.8 KB
/
libraries.json
File metadata and controls
1401 lines (1401 loc) · 49.8 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"copyrightHolders": [],
"location": "public/admin/tool/componentlibrary/amd/src/lunr.js",
"name": "lunr - http://lunrjs.com",
"description": "Provide a great search experience without the need for external, server-side, search services.",
"version": "2.3.9",
"license": "MIT",
"repository": "https://github.com/olivernn/lunr.js",
"customised": false
},
{
"copyrightHolders": [
"The Roundcube Dev Team"
],
"location": "public/admin/tool/messageinbound/roundcube",
"name": "Roundcube Framework",
"version": "1.6.11",
"license": "GPL",
"licenseversion": "3.0+",
"repository": "https://github.com/roundcube/roundcubemail",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/admin/tool/mfa/factor/totp/extlib/OTPHP",
"name": "OTPHP",
"version": "11.3.0",
"license": "MIT",
"repository": "https://github.com/Spomky-Labs/otphp",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/admin/tool/mfa/factor/totp/extlib/ParagonIE/ConstantTime",
"name": "Constant-Time Encoding",
"version": "3.0.0",
"license": "MIT",
"repository": "https://github.com/paragonie/constant_time_encoding",
"customised": false
},
{
"copyrightHolders": [
"2015 Richard Dancsi"
],
"location": "public/admin/tool/policy/amd/src/jquery-eu-cookie-law-popup.js",
"name": "jQuery EU Cookie Law popups",
"description": "An easy-to-install jQuery plugin to create EU Cookie Law popups and for GDPR compliance.",
"version": "1.1.3",
"license": "MIT",
"repository": "https://github.com/wimagguc/jquery-eu-cookie-law-popup",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/enrol/lti/ims-blti",
"name": "IMS-BLTI",
"description": "Set of IMS-LTI tools originaly provided by IMS.",
"version": "1.0",
"license": "MIT",
"repository": "https://github.com/jfederico/ims-dev",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/filter/algebra/AlgParser.pm",
"name": "WeBWorK",
"version": "2.4.9+",
"license": "GPL",
"licenseversion": "2.0+",
"customised": false
},
{
"copyrightHolders": [
"2012 Lea Verou"
],
"location": "public/filter/codehighlighter/amd/src/prism.js",
"name": "PrismJS",
"description": "Prism is a lightweight, robust, and elegant syntax highlighting library. It's a spin-off project from Dabblet.",
"version": "1.29.0",
"license": "MIT",
"repository": "https://github.com/PrismJS/prism",
"customised": false
},
{
"copyrightHolders": [
"Joubel"
],
"location": "public/h5p/h5plib/v128/joubel/core",
"name": "h5p-php-library",
"description": "The general H5P library.",
"version": "1.28.0",
"license": "GPL",
"licenseversion": "3.0+",
"repository": "https://github.com/h5p/h5p-php-library/",
"customised": false
},
{
"copyrightHolders": [
"Joubel"
],
"location": "public/h5p/h5plib/v128/joubel/editor",
"name": "h5p-editor-php-library",
"description": "A general library that is supposed to be used in most PHP implementations of H5P.",
"version": "moodle-1.27.2",
"license": "GPL",
"licenseversion": "3.0+",
"repository": "https://github.com/h5p/h5p-editor-php-library/",
"customised": false
},
{
"copyrightHolders": [
"2000-2013 John Lim (jlim#natsoft.com). All rights reserved.",
"2014 Damien Regad, Mark Newnham and the ADOdb community"
],
"location": "public/lib/adodb",
"name": "ADOdb",
"description": "Database abstraction library for MySQL, PostgreSQL, MSSQL, Oracle, Interbase, Foxpro, Access, ADO, Sybase, DB2 and ODBC.",
"version": "5.22.11",
"license": "BSD/LGPL",
"licenseversion": "3-Clause/2.1+",
"repository": "https://github.com/ADOdb/ADOdb",
"customised": false
},
{
"copyrightHolders": [
"2014, The WebRTC project authors. All rights reserved. Copyright (c) 2018, The adapter.js project authors."
],
"location": "public/lib/amd/src/adapter.js",
"name": "WebRTC adapter",
"description": "JavaScript library to insulate apps from spec changes and prefix differences in WebRTC. The prefix differences are mostly gone these days but differences in behaviour between browsers remain.",
"version": "8.0.0",
"license": "BSD",
"licenseversion": "3-Clause",
"repository": "https://github.com/webrtc/adapter",
"customised": false
},
{
"copyrightHolders": [
"2014-2025 Chart.js Contributors"
],
"location": "public/lib/amd/src/chartjs-lazy.js",
"name": "Chart.js",
"description": "Simple yet flexible JavaScript charting for designers & developers.",
"version": "4.5.1",
"license": "MIT",
"repository": "https://github.com/chartjs/Chart.js",
"customised": true
},
{
"copyrightHolders": [
"2019 Tim Perry"
],
"location": "public/lib/amd/src/loglevel.js",
"name": "loglevel.js",
"description": "Minimal lightweight simple logging for JavaScript.",
"version": "1.9.2",
"license": "MIT",
"repository": "https://github.com/pimterry/loglevel/",
"customised": false
},
{
"copyrightHolders": [
"2009 Chris Wanstrath (Ruby)",
"2010-2014 Jan Lehnardt (JavaScript)",
"2010-2015 The mustache.js community"
],
"location": "public/lib/amd/src/mustache.js",
"name": "Mustache.js",
"description": "JS library for displaying mustache templates.",
"version": "4.2.0",
"license": "MIT",
"repository": "https://github.com/janl/mustache.js",
"customised": false
},
{
"copyrightHolders": [
"2016 Federico Zivolo and contributors"
],
"location": "public/lib/amd/src/popper.js",
"name": "Popper.js",
"description": "A kickass library used to created Poppers in web applications.",
"version": "v1.12.6",
"license": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"customised": false
},
{
"copyrightHolders": [
"2016 Federico Zivolo and contributors"
],
"location": "public/lib/amd/src/popper2.js",
"name": "Popper.js",
"description": "A kickass library used to created Poppers in web applications.",
"version": "v2.11.8",
"license": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/amd/src/truncate.js",
"name": "Truncate.js",
"description": "Dead simple HTML-safe truncation via the DOM. It truncates HTML code, and has several options such as length, finishBlock and noBreak.",
"version": "0.0.1",
"license": "MIT",
"repository": "https://github.com/pathable/truncate",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/lib/aws-sdk",
"name": "AWS SDK for PHP",
"description": "The AWS SDK for PHP library",
"version": "3.356.22",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/aws/aws-sdk-php",
"customised": false
},
{
"copyrightHolders": [
"Deque Systems, Inc."
],
"location": "public/lib/behat/axe",
"name": "axe-core",
"description": "Accessibility testing engine for websites and other HTML-based user interfaces.",
"version": "4.10.3",
"license": "MPL",
"licenseversion": "2.0",
"repository": "https://github.com/dequelabs/axe-core",
"customised": false
},
{
"copyrightHolders": [
"2005, Jon Papaioannou"
],
"location": "public/lib/bennu",
"name": "Bennu",
"description": "Bennu is an object-oriented library written in PHP that implements the iCalendar standard (RFC 2445).",
"version": "0.2-custom",
"license": "LGPL",
"licenseversion": "2.1+",
"repository": "https://sourceforge.net/projects/bennu/",
"customised": true
},
{
"copyrightHolders": [
"Composer"
],
"location": "public/lib/composer/pcre",
"name": "composer/pcre",
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
"version": "3.3.2",
"license": "MIT",
"repository": "https://github.com/composer/pcre",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/js/tinymce",
"name": "Tiny",
"version": "8.2.2",
"license": "MIT",
"repository": "https://github.com/tinymce/tinymce",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/beautify",
"name": "js-beautify",
"description": "Beautifier for javascript.",
"version": "1.15.3",
"license": "MIT",
"repository": "https://github.com/beautifier/js-beautify/",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror",
"description": "CodeMirror is a versatile text editor implemented in JavaScript for the browser.",
"version": "6.0.1",
"license": "MIT",
"repository": "https://github.com/codemirror/",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/autocomplete",
"description": "Autocompletion for the CodeMirror code editor.",
"version": "6.18.6",
"license": "MIT",
"repository": "https://github.com/codemirror/autocomplete",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/commands",
"description": "Collection of editing commands for the CodeMirror code editor.",
"version": "6.8.0",
"license": "MIT",
"repository": "https://github.com/codemirror/commands",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/lang-css",
"description": "CSS language support for the CodeMirror code editor.",
"version": "6.3.1",
"license": "MIT",
"repository": "https://github.com/codemirror/lang-css",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/lang-html",
"description": "HTML language support for the CodeMirror code editor.",
"version": "6.4.9",
"license": "MIT",
"repository": "https://github.com/codemirror/lang-html",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/lang-javascript",
"description": "JavaScript language support for the CodeMirror code editor.",
"version": "6.2.3",
"license": "MIT",
"repository": "https://github.com/codemirror/lang-javascript",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/lang-xml",
"description": "XML language support for the CodeMirror code editor.",
"version": "6.1.0",
"license": "MIT",
"repository": "https://github.com/codemirror/lang-xml",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/language",
"description": "Language support infrastructure for the CodeMirror code editor.",
"version": "6.10.8",
"license": "MIT",
"repository": "https://github.com/codemirror/language",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/lint",
"description": "Linting support for the CodeMirror code editor.",
"version": "6.8.4",
"license": "MIT",
"repository": "https://github.com/codemirror/lint",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/search",
"description": "Search functionality for the CodeMirror code editor.",
"version": "6.5.10",
"license": "MIT",
"repository": "https://github.com/codemirror/search",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/state",
"description": "Editor state data structures for the CodeMirror code editor.",
"version": "6.5.2",
"license": "MIT",
"repository": "https://github.com/codemirror/state",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/html/amd/src/codemirror-lazy.js",
"name": "codemirror/view",
"description": "DOM view component for the CodeMirror code editor.",
"version": "6.36.4",
"license": "MIT",
"repository": "https://github.com/codemirror/view",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/editor/tiny/plugins/recordrtc/amd/src/lame.all.js",
"name": "lamejs",
"version": "1.2.1",
"license": "LGPL",
"repository": "https://github.com/zhuker/lamejs",
"customised": false
},
{
"copyrightHolders": [
"2013 Cal Henderson"
],
"location": "public/lib/emoji-data",
"name": "Emoji data",
"description": "Library to parse easily data and sprite sheets for emoji.",
"version": "15.1.2",
"license": "MIT",
"repository": "https://github.com/iamcal/emoji-data/",
"customised": true
},
{
"copyrightHolders": [
"Miles Kaufmann"
],
"location": "public/lib/evalmath",
"name": "EvalMath",
"description": "Class to safely evaluate math expressions.",
"version": "1.0.2",
"license": "BSD",
"repository": "https://github.com/dbojdo/eval-math",
"customised": true
},
{
"copyrightHolders": [
"2023 Fonticons, Inc"
],
"location": "public/lib/fonts",
"name": "Font Awesome - http://fontawesome.com",
"description": "The Font Awesome font. Font Awesome is the Internet's icon library and toolkit, used by millions of designers, developers, and content creators.",
"version": "6.7.2",
"license": "SIL OFL",
"licenseversion": "1.1",
"repository": "https://github.com/FortAwesome/Font-Awesome",
"customised": false
},
{
"copyrightHolders": [
"2015 Leaf Corcoran"
],
"location": "public/lib/geopattern-php",
"name": "GeoPattern",
"description": "Library for creating beautiful generative background images from a string.",
"version": "1.1.2",
"license": "MIT",
"repository": "https://github.com/RedeyeGroup/geopattern-php",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/giggsey/libphonenumber-for-php-lite",
"name": "libphonenumber for PHP (Lite)",
"version": "9.0.12",
"license": "Apache 2.0",
"repository": "https://github.com/giggsey/libphonenumber-for-php-lite",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/google",
"name": "Google APIs",
"description": "Library Google APIs Client Library for PHP",
"version": "1.1.7",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/googleapis/google-api-php-client",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/lib/google2",
"name": "Google APIs",
"description": "Library Google APIs Client Library for PHP",
"version": "2.18.4",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/googleapis/google-api-php-client",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/google2-auth",
"name": "Google Auth",
"description": "Google Auth Library for PHP",
"version": "1.49.0",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/googleapis/google-auth-library-php",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/google2-service",
"name": "Google Client Services",
"description": "Google PHP API Client Services",
"version": "0.424.0",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/googleapis/google-api-php-client-services",
"customised": false
},
{
"copyrightHolders": [
"2000 Herman Veluwenkamp (hermanV AT mindless DOT com)"
],
"location": "public/lib/graphlib.php",
"name": "Graph Class",
"description": "Class to draw line, point, bar, and area graphs, including numeric x-axis and double y-axis.",
"version": "1.6.3",
"license": "GPL",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/guzzlehttp/guzzle",
"name": "guzzlehttp/guzzle",
"description": "Guzzle is a PHP HTTP client library",
"version": "7.10.0",
"license": "MIT",
"repository": "https://github.com/guzzle/guzzle",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/guzzlehttp/kevinrob/guzzlecache",
"name": "kevinrob/guzzle-cache-middleware",
"description": "A HTTP Cache for Guzzle as a simple Middleware to be added in the HandlerStack.",
"version": "7.0.0",
"license": "MIT",
"repository": "https://github.com/Kevinrob/guzzle-cache-middleware",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/guzzlehttp/promises",
"name": "guzzlehttp/promises",
"description": "Guzzle promises library",
"version": "2.3.0",
"license": "MIT",
"repository": "https://github.com/guzzle/promises",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/guzzlehttp/psr7",
"name": "guzzlehttp/psr7",
"description": "PSR-7 message implementation that also provides common utility methods",
"version": "2.8.0",
"license": "MIT",
"repository": "https://github.com/guzzle/psr7",
"customised": false
},
{
"copyrightHolders": [
"2005-2007 Jon Abernathy jon@chuggnutt.com"
],
"location": "public/lib/html2text",
"name": "HTML2Text",
"description": "PHP script to convert HTML into an approximate text equivalent.",
"version": "4.3.2",
"license": "GPL",
"licenseversion": "2.0+",
"repository": "https://github.com/mtibben/html2text",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/htmlpurifier",
"name": "HTML Purifier",
"description": "Filters HTML.",
"version": "4.18.0",
"license": "LGPL",
"licenseversion": "2.1+",
"repository": "https://github.com/ezyang/htmlpurifier",
"customised": false
},
{
"copyrightHolders": [
"2014 Michael Dowling, https://github.com/mtdowling"
],
"location": "public/lib/jmespath",
"name": "JMESPath",
"description": "The JMESPath library",
"version": "2.8.0",
"license": "MIT",
"repository": "https://github.com/jmespath/jmespath.php",
"customised": false
},
{
"copyrightHolders": [
"2016 The jQuery Foundation"
],
"location": "public/lib/jquery",
"name": "jQuery",
"description": "jQuery is a fast, small, and feature-rich JavaScript library widely used on moodle.",
"version": "3.7.1",
"license": "MIT",
"repository": "https://github.com/jquery/jquery",
"customised": false
},
{
"copyrightHolders": [
"2016 The jQuery Foundation and other contributors"
],
"location": "public/lib/jquery",
"name": "jQuery UI",
"description": "jQuery UI is a set of user interface interactions, effects, widgets, and themes built on top of the jQuery library.",
"version": "1.14.1",
"license": "MIT",
"repository": "https://github.com/jquery/jquery-ui",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/laravel/serializable-closure",
"name": "Serializable Closure",
"version": "2.0.10",
"license": "MIT",
"repository": "https://github.com/laravel/serializable-closure",
"customised": false
},
{
"copyrightHolders": [
"MartinLenord"
],
"location": "public/lib/lti1p3",
"name": "LTI 1.3 Tool Library",
"description": "A library used for building IMS-certified LTI 1.3 tool providers in PHP.",
"version": "6.2.0",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/packbackbooks/lti-1-3-php-library",
"customised": true
},
{
"copyrightHolders": [
"2016 IMS Global Learning Consortium Inc. All Rights Reserved. Trademark Policy - (www.imsglobal.org/trademarks)"
],
"location": "public/lib/ltiprovider",
"name": "LTI Tool Provider Library PHP",
"description": "PHP library for communicating with learning tools as per the LTI specification.",
"version": "3.0.2",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/1EdTech/LTI-Tool-Provider-Library-PHP",
"customised": false
},
{
"copyrightHolders": [
"2004-2016 Michel Fortin https://michelf.com/projects/php-markdown/",
"(Original Markdown) 2004-2006 John Gruber https://daringfireball.net/projects/markdown/\nAll rights reserved."
],
"location": "public/lib/markdown",
"name": "Markdown",
"description": "Functions to convert from the Markdown text format into clean XHTML.",
"version": "2.0.0",
"license": "BSD",
"repository": "https://github.com/michelf/php-markdown",
"customised": true
},
{
"copyrightHolders": [
"MaxMind"
],
"location": "public/lib/maxmind/GeoIp2",
"name": "GeoIP2 PHP API",
"description": "Library for processing of GeoIP data files.",
"version": "3.2.0",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/maxmind/GeoIP2-php",
"customised": false
},
{
"copyrightHolders": [
"MaxMind"
],
"location": "public/lib/maxmind/MaxMind",
"name": "MaxMind DB Reader API",
"description": "PHP API for reading MaxMind DB files.",
"version": "1.12.1",
"license": "Apache",
"licenseversion": "2.0",
"repository": "https://github.com/maxmind/MaxMind-DB-Reader-php/",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/minify/matthiasmullie-minify",
"name": "MatthiasMullie\\Minify",
"description": "CSS & JavaScript minifier, in PHP",
"version": "1.3.75",
"license": "MIT",
"repository": "https://github.com/matthiasmullie/minify",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/lib/minify/matthiasmullie-pathconverter",
"name": "MatthiasMullie\\PathConverter",
"description": "CSS path converter, in PHP",
"version": "1.1.3",
"license": "MIT",
"repository": "https://github.com/matthiasmullie/path-converter",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/monolog",
"name": "Monolog",
"description": "Monolog - Logging for PHP",
"version": "3.9.0",
"license": "MIT",
"repository": "https://github.com/Seldaek/monolog",
"customised": false
},
{
"copyrightHolders": [
"2010-2025 Justin Hileman"
],
"location": "public/lib/mustache",
"name": "Mustache",
"description": "PHP library for displaying mustache templates.",
"version": "3.0.0",
"license": "MIT",
"repository": "https://github.com/bobthecow/mustache.php",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/nikic/fast-route",
"name": "FastRoute",
"version": "1.3.0",
"license": "BSD",
"licenseversion": "3-Clause",
"repository": "https://github.com/nikic/FastRoute",
"customised": false
},
{
"copyrightHolders": [
"OpenSpout"
],
"location": "public/lib/openspout",
"name": "OpenSpout",
"description": "Library to read and write spreadsheet files (CSV, XLSX and ODS).",
"version": "4.28.5",
"license": "MIT",
"repository": "https://github.com/openspout/openspout",
"customised": false
},
{
"copyrightHolders": [
"2004 Adam Daniel, Bertrand Mansion, Klaus Guenther, Alexey Borzov"
],
"location": "public/lib/pear/HTML/Common.php",
"name": "Pear_HTML_Common",
"description": "Class with many common HTML functions (used by HTML Quickform)",
"version": "1.7",
"license": "PHP",
"licenseversion": "2.0",
"repository": "http://pear.php.net/package/HTML_Common",
"customised": true
},
{
"copyrightHolders": [
"2004 Bertrand Mansion, Adam Daniel, Alexey Borzov"
],
"location": "public/lib/pear/HTML/QuickForm",
"name": "Pear_HTML_QuickForm",
"description": "Class to write forms",
"version": "2.0",
"license": "PHP",
"licenseversion": "2.0",
"repository": "https://pear.php.net/package/HTML_Quickform",
"customised": true
},
{
"copyrightHolders": [
"2004 Bertrand Mansion, Adam Daniel, Alexey Borzov"
],
"location": "public/lib/pear/HTML/QuickForm.php",
"name": "Pear_HTML_QuickForm.php",
"description": "Class to write forms",
"version": "2.0",
"license": "PHP",
"licenseversion": "2.0",
"repository": "https://pear.php.net/package/HTML_Quickform",
"customised": true
},
{
"copyrightHolders": [
"2001-2006 The PHP Group. All rights reserved"
],
"location": "public/lib/pear/PEAR.php",
"name": "Pear.php",
"description": "Base class for other PEAR classes.",
"version": "1.4.5",
"license": "PHP",
"licenseversion": "3.0",
"repository": "https://pear.php.net/package/PEAR",
"customised": true
},
{
"copyrightHolders": [
"2011 Raphael Schweikert, http://sabberworm.com/"
],
"location": "public/lib/php-css-parser",
"name": "PHP-CSS-Parser",
"description": "A Parser for CSS Files written in PHP.",
"version": "8.7.0",
"license": "MIT",
"repository": "https://github.com/sabberworm/PHP-CSS-Parser",
"customised": true
},
{
"copyrightHolders": [],
"location": "public/lib/php-di/invoker",
"name": "PHP DI Invoker",
"version": "2.3.6",
"license": "MIT",
"repository": "https://github.com/php-di/invoker",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/php-di/php-di",
"name": "PHP Dependency Injector",
"version": "7.0.8",
"license": "MIT",
"repository": "https://github.com/PHP-DI/PHP-DI",
"customised": false
},
{
"copyrightHolders": [
"2011, Neuman Vong"
],
"location": "public/lib/php-jwt",
"name": "PHP-JWT",
"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519",
"version": "6.11.1",
"license": "BSD",
"licenseversion": "3-Clause",
"repository": "https://github.com/firebase/php-jwt",
"customised": false
},
{
"copyrightHolders": [
"2003 Brent R. Matzelle (bmatzelle AT yahoo DOT com)"
],
"location": "public/lib/phpmailer",
"name": "PHPMailer",
"description": "Class for sending email using either sendmail, PHP mail(), or SMTP. Methods are based upon the standard AspEmail(tm) classes.",
"version": "6.9.3",
"license": "LGPL",
"licenseversion": "2.1",
"repository": "https://github.com/PHPMailer/PHPMailer",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/phpspreadsheet/markbaker/complex",
"name": "PHPComplex",
"description": "PHP Class Library for working with Complex numbers.",
"version": "3.0.2",
"license": "MIT",
"repository": "https://github.com/MarkBaker/PHPComplex",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/phpspreadsheet/markbaker/matrix",
"name": "PHPMatrix",
"description": "PHP Class for handling Matrices.",
"version": "3.0.1",
"license": "MIT",
"repository": "https://github.com/MarkBaker/PHPMatrix",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/phpspreadsheet/phpspreadsheet",
"name": "PhpSpreadsheet",
"description": "Library to read, write and create spreadsheet documents in PHP.",
"version": "5.2.0",
"license": "MIT",
"repository": "https://github.com/PHPOffice/PhpSpreadsheet",
"customised": true
},
{
"copyrightHolders": [
"1999,2000,2001 Edd Dumbill, Useful Information Company"
],
"location": "public/lib/phpxmlrpc",
"name": "phpxmlrpc",
"description": "A php library for building xml-rpc clients and servers",
"version": "4.11.1",
"license": "BSD",
"licenseversion": "3-Clause",
"repository": "https://github.com/gggeek/phpxmlrpc",
"customised": true
},
{
"copyrightHolders": [
"2018 Teclib",
"2009 Christian Kruse, Rodney Rehm"
],
"location": "public/lib/plist",
"name": "plist",
"description": "PHP Implementation of Apple's PList (binary and XML).",
"version": "2.0.5",
"license": "MIT",
"repository": "https://github.com/TECLIB/CFPropertyList",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/polyfills",
"name": "regenerator-runtime",
"description": "This package implements a fully-functional source transformation that takes the syntax for generators/yield from ECMAScript 2015 or ES2015 and Asynchronous Iteration proposal and spits out efficient JS-of-today (ES5) that behaves the same way.",
"version": "0.13.7",
"license": "MIT",
"repository": "https://github.com/facebook/regenerator/",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/polyfills",
"name": "core-js-bundle",
"description": "Modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2021: promises, symbols, collections, iterators, typed arrays, many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like URL. You can load only required features or use it without global namespace pollution.",
"version": "3.15.0",
"license": "MIT",
"repository": "https://github.com/zloirock/core-js",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/polyfills",
"name": "mdn-polyfill",
"description": "A collection of side-effect ECMAScript modules. Minimized, mangled and extremely small thanks to Rollup - next-generation ES6 module bundler.",
"version": "5.20.0",
"license": "MIT",
"repository": "https://github.com/msn0/mdn-polyfills",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/polyfills",
"name": "url-polyfill",
"description": "Polyfill URL and URLSearchParams to match last WHATWG specifications.",
"version": "1.1.12",
"license": "MIT",
"repository": "https://github.com/lifaon74/url-polyfill",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/psr/cache",
"name": "cache",
"description": "Caching Interface (PHP FIG PSR-6).",
"version": "3.0.0",
"license": "MIT",
"repository": "https://github.com/php-fig/cache",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/psr/clock",
"name": "clock",
"description": "Clock Interface (PHP FIG PSR-20).",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/php-fig/clock",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/psr/container",
"name": "container",
"description": "Common Container Interface (PHP FIG PSR-11).",
"version": "2.0.2",
"license": "MIT",
"repository": "https://github.com/php-fig/container",
"customised": false
},
{
"copyrightHolders": [],
"location": "public/lib/psr/event-dispatcher",
"name": "event-dispatcher",
"description": "Provides interfaces that descirbe an event dispatching mechanism.",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/php-fig/event-dispatcher",
"customised": false