-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 995 Bytes
/
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
{
"name": "smarty/smarty-lexer",
"type": "library",
"description": "Smarty Lexer/Parser generator",
"keywords": ["templating"],
"homepage": "http://www.smarty.net",
"license": "LGPL-3.0",
"authors": [
{
"name": "Monte Ohrt",
"email": "[email protected]"
},
{
"name": "Uwe Tews",
"email": "[email protected]"
},
{
"name": "Rodney Rehm",
"email": "[email protected]"
},
{
"name": "Simon Wisselink",
"homepage": "https://www.iwink.nl/"
}
],
"support": {
"irc": "irc://irc.freenode.org/smarty",
"issues": "http://code.google.com/p/smarty-php/issues/list",
"forum": "http://www.smarty.net/forums/"
},
"autoload": {
"psr-4": {
"SmartyGenerator\\": "src/SmartyGenerator/"
}
},
"require": {
"php": "^7.1 || ^8.0"
}
}