From a95ea0c1374faffa985ca63e91ce96bb4926793c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 19 Oct 2021 10:07:41 +0200 Subject: new package --- composer.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c19ed18 --- /dev/null +++ b/composer.json @@ -0,0 +1,35 @@ +{ + "name": "roundcube/rtf-html-php", + "description": "RTF to HTML converter in PHP", + "keywords": ["rtf", "converter"], + "type": "library", + "license": "GPL-2.0", + "authors": [ + { + "name": "Alexander van Oostenrijk", + "email": "alex.vanoostenrijk@gmail.com" + }, + { + "name": "Aleksander Machniak", + "email": "alec@alec.pl" + } + ], + "scripts": { + "test": [ + "phpunit tests" + ] + }, + "require": { + "php": ">=5.4", + "ext-iconv": "*", + "ext-mbstring": "*" + }, + "autoload": { + "psr-4": { + "RtfHtmlPhp\\": "src/" + } + }, + "require-dev": { + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6 || ^7" + } +} -- cgit