aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: 7c8db10b8bae6586e2d59691c6174ed662b1c505 (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
{
  "name": "pablotron/zipstream",
  "description": "Dynamically generate streamed zip archives.",
  "license": "MIT",

  "authors": [{
    "name": "Paul Duncan",
    "email": "zipstream@pablotron.org",
    "homepage": "https://pablotron.org/",
    "role": "developer"
  }],

  "require": {
    "php": "^7"
  },

  "require-dev": {
    "phpunit/phpunit": "^7",
    "phpdocumentor/phpdocumentor": "2.*"
  },

  "autoload": {
    "psr-4": {
      "Pablotron\\ZipStream\\": "src/"
    }
  },

  "autoload-dev": {
    "psr-4": {
      "Pablotron\\ZipStream\\Tests\\": "tests/"
    }
  },

  "scripts": {
    "test": [
      "phpunit --bootstrap vendor/autoload.php tests"
    ],

    "docs": [
      "phpdoc -d src -t docs --template=responsive-twig --title=ZipStream"
    ]
  }
}