diff options
| author | Uwe Tews <uwe.tews@googlemail.com> | 2014-10-31 00:42:46 +0100 |
|---|---|---|
| committer | Uwe Tews <uwe.tews@googlemail.com> | 2014-10-31 00:42:46 +0100 |
| commit | f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104 (patch) | |
| tree | 67cb33018de02136b2926fb7ab65eba7a26b5b58 /composer.json | |
| download | smarty-f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104.tar.gz smarty-f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104.tar.bz2 smarty-f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104.zip | |
Init
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..106bb281 --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "smarty/smarty", + "type": "library", + "description": "Smarty - the compiling PHP template engine", + "keywords": ["templating"], + "homepage": "http://www.smarty.net", + "license": "LGPL-3.0", + "authors": [ + { + "name": "Monte Ohrt", + "email": "monte@ohrt.com" + }, + { + "name": "Uwe Tews", + "email": "uwe.tews@googlemail.com" + } + ], + "support": { + "irc": "irc://irc.freenode.org/smarty", + "issues": "http://code.google.com/p/smarty-php/issues/list", + "forum": "http://www.smarty.net/forums/" + }, + "require": { + "php": ">=5.2" + }, + "autoload": { + "classmap": [ + "libs/Smarty.class.php", + "libs/Smarty_Compiler.class.php", + "libs/Config_File.class.php" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev" + } + } + +} |
