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

composer.json - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21bef8904d019798dac68d6a16594bc76de33c50 (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
{
    "name": "nextcloud/tasks",
    "description": "Nextcloud Tasks",
    "type": "project",
    "license": "AGPL",
    "authors": [
        {
            "name": "Bernhard Posselt",
            "email": "dev@bernhard-posselt.com"
        }
    ],
    "require": {
        "php": ">=7.3 <=8.1"
    },
    "require-dev": {
        "nextcloud/coding-standard": "^1.0.0",
        "phpunit/phpunit": "^9.5"
    },
    "config": {
        "platform": {
            "php": "7.4"
        },
        "optimize-autoloader": true,
        "classmap-authoritative": true
    },
    "scripts": {
        "cs:check": "php-cs-fixer fix --dry-run --verbose",
        "cs:fix": "php-cs-fixer fix",
        "lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
        "test:unit": "phpunit --configuration phpunit.xml --fail-on-warning",
        "test:integration": "phpunit --configuration phpunit.integration.xml --fail-on-warning"
    }
}