forked from westberliner/checksum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 920 Bytes
/
composer.json
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": "[email protected]"
}
],
"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"
}
}