This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "smarty/smarty", | |
"type": "library", | |
"description": "Smarty - the compiling PHP template engine", | |
"keywords": ["templating"], | |
"homepage": "http://www.smarty.net", | |
"license": "LGPLv3", | |
"authors": [ | |
{ | |
"name": "Monte Ohrt", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Helper holds a collection of static methods, useful for generic purposes | |
*/ | |
class Helper | |
{ | |
/** | |
* Returns a safe filename, for a given platform (OS), by replacing all | |
* dangerous characters with an underscore. |
NewerOlder