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

composer.json - github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bb7aca41f9c9e85e7eb5542e5b2b2a9c060ccf3 (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
34
35
36
{
    "name": "westberliner/checksum",
    "description": "Nextcloud app - Creating a hash checksum of a file.",
    "license": "AGPL",
    "authors": [
        {
            "name": "Patrick",
            "email": "patrick@westberliner.net"
        }
    ],
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.8",
        "nextcloud/coding-standard": "^1.0",
        "phpunit/phpunit": "^9.5",
        "phpstan/phpstan": "^1.6"
    },
    "config": {
        "optimize-autoloader": true,
        "classmap-authoritative": true,
        "platform": {
            "php": "7.4"
        }
    },
    "autoload-dev": {
		"psr-4": {
			"OCA\\Checksum\\": "lib/"
		}
	},
    "minimum-stability": "stable",
    "scripts": {
        "test": "vendor/bin/phpunit",
		"cs:check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
		"cs:fix": "vendor/bin/php-cs-fixer fix",
        "stan": "vendor/bin/phpstan analyse"
	}
}