summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-10-19 10:07:41 +0200
committerRemi Collet <remi@php.net>2021-10-19 10:07:41 +0200
commita95ea0c1374faffa985ca63e91ce96bb4926793c (patch)
tree44501ffeb7bc97819ce34d90806397726c8c6695 /composer.json
new packageHEADmaster
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json35
1 files changed, 35 insertions, 0 deletions
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"
+ }
+}