blob: a00d0d45144b35c47b53c00a500581c6cb544f25 (
plain)
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
|
{
"name": "pablotron/luigi-template",
"description": "String emplate library.",
"homepage": "https://github.com/pablotron/luigi-template",
"license": "MIT",
"authors": [{
"name": "Paul Duncan",
"email": "luigi-template@pablotron.org",
"homepage": "https://pablotron.org/",
"role": "developer"
}],
"require": {
"php": "^7"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpdocumentor/phpdocumentor": "2.*"
},
"autoload": {
"psr-4": {
"Luigi\\": "src/"
}
},
"scripts": {
"test": [
"phpunit --bootstrap vendor/autoload.php tests"
],
"docs": [
"phpdoc -d src -t docs --template=responsive-twig --title=LuigiTemplate"
]
}
}
|