summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 52446974e96d8bbc44aa933211fae9f8bf40c9ac (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
36
37
{
  "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": ">=7.1"
  },
  "config" : {
    "platform": {
        "php": "7.1"
    }
},
"autoload": {
    "psr-4": {
      "ownCloud\\TarStreamer\\": "src/"
    }
  },
  "archive": {
    "exclude": [
      "test",
      "tests"
    ]
  },
  "require-dev": {
    "phpunit/phpunit": "^7.5",
    "pear/pear-core-minimal": "v1.10.10",
    "pear/archive_tar": "~1.4"
  }
}