diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..99b56bc --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "kukulich/fshl", + "type": "library", + "description": "FSHL is a free, open source, universal, fast syntax highlighter written in PHP.", + "keywords": ["library", "highlight", "syntax"], + "homepage": "http://fshl.kukulich.cz/", + "license": "GPL-2.0+", + + "authors": [ + { + "name": "Jaroslav HanslĂk", + "homepage": "https://github.com/kukulich" + } + ], + + "require": { + "php": ">=5.3" + }, + + "autoload": { + "psr-0": { + "FSHL": "./" + } + } +} |