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

composer.json - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff94ef05d7f071d81a0eef845756220bc994700e (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
{
    "config" : {
        "vendor-dir": "lib/composer",
        "optimize-autoloader": true
    },
    "autoload" : {
			"psr-4": {
			"": "lib/private/legacy",
            "OC\\": "lib/private",
            "OC\\Core\\": "core/",
            "OCP\\": "lib/public"
        }
    },
    "require": {
        "ext-json": "*",
        "ext-libxml": "*",
        "ext-mbstring": "*",
        "ext-pdo": "*",
        "ext-simplexml": "*",
        "ext-xmlreader": "*",
        "ext-zip": "*"
    },
    "require-dev": {
        "nextcloud/coding-standard": "^0.5.0",
        "vimeo/psalm": "^4.0"
    },
    "scripts": {
        "cs:fix": "php-cs-fixer fix",
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l",
        "psalm": "psalm"
    }
}