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

composer.json - github.com/nextcloud/client_updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7cc2699cb8e88ea8d3636f0c48c32d46255cce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "config": {
    "vendor-dir": "./vendor/",
    "optimize-autoloader": true,
    "classmap-authoritative": true
  },
  "autoload": {
    "psr-4": {
      "ClientUpdateServer\\": "src/",
      "Tests\\": "tests/unit"
    }
  },
  "require-dev": {
    "phpunit/phpunit": "^8.0"
  },
  "scripts": {
    "start": "php -S 0.0.0.0:1234 -t ."
  }
}