forked from tsugiproject/tsugi-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (33 loc) · 847 Bytes
/
composer.json
File metadata and controls
34 lines (33 loc) · 847 Bytes
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
{
"name": "tsugi/lib",
"description": "The PHP Library to build interoperable learning tools",
"homepage": "http://www.tsugi.org/",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "csev",
"email": "drchuck@gmail.com",
"homepage": "http://www.dr-chuck.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {"Tsugi\\": "src/"},
"exclude-from-classmap": [
"/tests/",
"phpdoc.dist.xml",
"phpunit.xml.dist"
]
},
"require": {
"php": ">=7.2.0 <8.1.0",
"laravel/lumen-framework": "v7.2.2",
"firebase/php-jwt" : "v5.2.0",
"ezyang/htmlpurifier": "v4.14.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"phpunit/php-timer": "v5.0.3"
}
}