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

composer.json - github.com/nextcloud/calendar.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040c0765e2ae09ce6ecd1724593c5311751d0655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "config": {
        "platform": {
            "php": "7.4"
        },
        "sort-packages": true
    },
    "require": {
        "php": ">=7.4 <=8.1"
    },
    "require-dev": {
        "christophwurst/nextcloud_testing": "0.12.4",
        "nextcloud/coding-standard": "^1.0.0"
    },
    "scripts": {
        "cs:fix": "php-cs-fixer fix",
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './tests/*' -print0 | xargs -0 -n1 php -l",
        "test": "phpunit --configuration phpunit.unit.xml --fail-on-warning",
        "test:dev": "phpunit --configuration phpunit.unit.xml --fail-on-warning --stop-on-error --stop-on-failure"
    }
}