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

composer.json - github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d30a6d6a471e11cd61598f63a5cf6db0f185ba49 (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
{
    "name": "nextcloud/privacy",
    "description": "-",
    "type": "project",
    "license": "AGPL",
    "authors": [
        {
            "name": "Georg Ehrke"
        }
    ],
    "require": {},
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "nextcloud/coding-standard": "^1.0.0"
    },
    "scripts": {
        "lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix"
    },
    "config": {
        "platform": {
            "php": "7.4"
        }
    }
}