Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/nextcloud/updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 293c5da29dbd959877dae60ffdf5fea82f0d93c8 (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
{
  "config": {
    "vendor-dir": "./vendor/",
    "optimize-autoloader": true,
    "classmap-authoritative": true,
    "platform": {
      "php": "7.2"
    }
  },
  "autoload": {
    "psr-4": {
      "UpdateServer\\": "src/",
      "Tests\\": "tests/unit"
    }
  },
  "require": {
    "ext-json": "*"
  },
  "require-dev": {
    "behat/behat": "~3.11.0"
  },
  "scripts": {
    "lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l"
  }
}