summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 85992b974d9686bb2bf08208e615bcd2edbcbe99 (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
38
39
40
41
42
43
44
45
46
47
{
  "name": "deepdiver/zipstreamer",
  "type": "library",
  "description": "Stream zip files without i/o overhead",
  "keywords": ["zip", "stream"],
  "homepage": "https://github.com/DeepDiver1975/PHPZipStreamer",
  "license": "GPL-3.0+",
  "version": "1.1.1",
  "authors": [ {
      "name": "Nicolai Ehemann",
      "email": "en@enlightened.de",
      "role": "Author/Maintainer"
    },{
      "name": "André Rothe",
      "email": "arothe@zks.uni-leipzig.de",
      "role": "Contributor"
    },{
      "name": "Lukas Reschke",
      "email": "lukas@owncloud.com",
      "role": "Contributor"
    },{
      "name": "Thomas Müller",
      "email": "thomas.mueller@tmit.eu",
      "role": "Contributor"
    },{
      "name": "Roeland Jago Douma",
      "email": "roeland@famdouma.nl",
      "role": "Contributor"
    }
  ],
  "repositories": [ {
      "type": "vcs",
      "url": "https://github.com/DeepDiver1975/PHPZipStreamer"
    }
  ],                                                
  "require": {
    "php": ">=5.6.0"
  },
  "autoload": {
    "psr-4": {
      "ZipStreamer\\": "src/"
    }
  },
  "require-dev": {
    "phpunit/phpunit": "^5.7"
  }
}