From cda658dfc27a0bef6272a0b05767edc0a668c725 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 16 Feb 2017 12:19:36 +0100 Subject: php-kukulich-fshl: add patch for PHP 7.1 --- composer.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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": "./" + } + } +} -- cgit