-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
49 lines (49 loc) · 1.23 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
47
48
49
{
"name": "unl/php-wdn-templates",
"description": "A PHP library for rendering the UNL templates",
"homepage": "http://wdn.unl.edu/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jeff Sturek (jsturek)",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Kevin Abel (kabel)",
"email": "[email protected]",
"role": "Retired Developer"
},
{
"name": "Brett Bieber (saltybeagle)",
"email": "[email protected]",
"role": "Retired Developer"
},
{
"name": "Ned Hummel (nhummel2)",
"email": "[email protected]",
"role": "Retired Developer"
}
],
"autoload": {
"psr-4": { "UNL\\Templates\\": "src/" }
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/unl/phpdwtparser.git"
}
],
"require": {
"php": ">=8.1",
"unl/php-dwt-parser": "1.0.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5.27"
},
"autoload-dev": {
"psr-4": {
"UNLTest\\Templates\\": "tests/"
}
}
}