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

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick <patrick@westberliner.net>2022-05-15 12:53:48 +0300
committerPatrick <patrick@westberliner.net>2022-05-15 12:53:48 +0300
commitdbcdb821bc3632e6db0cfbead5e356c7f6582c60 (patch)
tree9f3cc8d6f9b843ba868dd3e55469c1f115ba969e /composer.json
parentc00a4ec2c696dee729f9dfa747853b2fbbecbc5c (diff)
Add qa tools. CS Fix files.
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..7bb7aca
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,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"
+ }
+}