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

composer.json - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 108c50c5859a617428e749ded7634848de44e9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "require": {
        "sabre/xml": "^1.2",
        "sabre/uri": "~1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5 || ^9.3",
        "friendsofphp/php-cs-fixer": "^2.14"
    },
    "scripts": {
        "test": "phpunit --configuration phpunit.xml",
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix",
        "lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
    }
}