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: 702b739306e56f350bc8d44f1c2315242786bac4 (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
{
    "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-pdo": "*"
    },
    "require-dev": {
        "nextcloud/coding-standard": "^0.3.0",
        "vimeo/psalm": "3.15"
    },
    "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"
    }
}