mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-25 16:20:42 -05:00
31 lines
791 B
JSON
31 lines
791 B
JSON
{
|
|
"name": "nicmart/string-template",
|
|
"type": "library",
|
|
"description": "StringTemplate is a very simple string template engine for php. I've written it to have a thing like sprintf, but with named and nested substutions.",
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Nicolò Martini",
|
|
"email": "nicmartnic@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2"
|
|
},
|
|
"require-dev": {
|
|
"php-coveralls/php-coveralls": "^2",
|
|
"phpunit/phpunit": "^8 || ^9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"StringTemplate\\": "src/StringTemplate/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"StringTemplate\\Test\\": "tests/StringTemplate/"
|
|
}
|
|
}
|
|
}
|