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

composer.json - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69c8c9fdde64a1836979a6cfa92991b12da507ee (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
{
    "name": "nextcloud/text",
    "type": "project",
    "require-dev": {
        "roave/security-advisories": "dev-master",
        "christophwurst/nextcloud": "dev-master",
        "nextcloud/coding-standard": "^1.0.0",
        "psalm/phar": "^4.3",
        "phpunit/phpunit": "^9.5",
        "ext-mbstring": "*"
    },
    "license": "AGPLv3",
    "authors": [
        {
            "name": "Julius Härtl",
            "email": "jus@bitgrid.net"
        }
    ],
    "require": {
      "php": "^7.3|^8.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",
      "psalm": "psalm.phar",
      "test:unit": "phpunit -c tests/phpunit.xml"
    }
}