summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c19ed188ace5d0634bb4f3ce915260b24dd0eaff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
  }
}