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
|
{
"name": "r7r/ste",
"require": {
"php": ">=7.3.0"
},
"autoload": {
"psr-4": {
"r7r\\ste\\": "src/ste"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Laria Carolin Chabowski",
"email": "laria@laria.me",
"homepage": "http://hi-im.laria.me",
"role": "Developer"
}
],
"description": "A compiling template engine with an XML-ish syntax",
"type": "library",
"keywords": ["templating"],
"homepage": "http://github.com/silvasur/ste",
"require-dev": {
"phpdocumentor/phpdocumentor": "^2.9",
"phpunit/phpunit": "^9"
}
}
|