summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 2e2653824efe5148e09e371b68c86ad1ef26dfab (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
{
  "name": "owncloud/tarstreamer",
  "type": "library",
  "description": "A library for dynamically streaming dynamic tar files without the need to have the complete file stored on the server.",
  "keywords": [
    "tar",
    "archive",
    "stream",
    "php"
  ],
  "homepage": "https://github.com/owncloud/TarStreamer",
  "license": "MIT",
  "require": {
    "php": ">=5.3.8"
  },
  "autoload": {
    "psr-4": {
      "ownCloud\\TarStreamer\\": "src/"
    }
  },
  "archive": {
    "exclude": [
      "test",
      "tests"
    ]
  },
  "require-dev": {
    "phpunit/phpunit": "^4.8",
    "pear/pear-core-minimal": "v1.10.0alpha2",
    "pear/archive_tar": "~1.4"
  }
}