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

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-12-23 17:20:02 +0300
committerJoas Schilling <coding@schilljs.com>2021-01-07 16:01:45 +0300
commita2ef40fd8e8a0c9bec3c18d8f8300b3f6563238e (patch)
treed5cb37050fc958a3a68bc47beead05fcb426e034 /composer.json
parent1794e6744e0719d127e29d2c68df32ebdead9410 (diff)
Add pslam
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/composer.json b/composer.json
index 223d7d5..67a266f 100644
--- a/composer.json
+++ b/composer.json
@@ -2,21 +2,24 @@
"name": "nextcloud/notifications",
"description": "notifications",
"license": "AGPL",
- "require": {},
+ "require": {
+ },
"require-dev": {
"phpunit/phpunit": "^8.5",
- "nextcloud/coding-standard": "^0.3.0"
+ "nextcloud/coding-standard": "^0.3.0",
+ "psalm/phar": "^4.3"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
- "php": "7.2"
+ "php": "7.3"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
- "cs:fix": "php-cs-fixer fix"
+ "cs:fix": "php-cs-fixer fix",
+ "psalm": "psalm.phar"
}
}