openclassify/vendor/nicmart/string-template/composer.json
Mostafa Moradi 59dbba58fb readme
2022-04-08 12:26:15 +03:00

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/"
}
}
}