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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-09 10:27:09 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-09 10:27:09 +0300
commit22e1944cfd4b9e8080d13dc1ec2728be463b9688 (patch)
treecbf4ee2719b109fc9ba21dbf35fb45e65f3cc08c /composer.json
parentabc1b0a00ce3bfc84c7306381b8d19e3c7bd7192 (diff)
Add phan as composer dev dependency and add a composer script
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json7
1 files changed, 3 insertions, 4 deletions
diff --git a/composer.json b/composer.json
index 578f1513f..828f8a600 100644
--- a/composer.json
+++ b/composer.json
@@ -32,14 +32,13 @@
},
"require-dev": {
"christophwurst/nextcloud": "dev-stable15",
- "christophwurst/nextcloud_testing": "0.5.1"
+ "christophwurst/nextcloud_testing": "0.5.1",
+ "phan/phan": "^1.2"
},
"scripts": {
+ "phan": "phan --allow-polyfill-parser -k .phan/config.php",
"test": "phpunit -c tests/phpunit.xml --fail-on-warning",
"test:unit": "phpunit -c tests/phpunit.xml tests --fail-on-warning",
"test:unit:dev": "phpunit -c tests/phpunit.xml tests --no-coverage --fail-on-warning"
- },
- "suggest": {
- "phan/phan": "^0.10.0"
}
}