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

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-04 23:16:07 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-04 23:17:00 +0300
commit0481a2967562d0354a8ef042714ebdf639392c7a (patch)
tree2aa2743d9013162461c2a352aa4b67924525193d
parent4a8927878a56390030911b44cbc6c8f7d9ac67c8 (diff)
Add composer min phpv20.0.0beta4
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r--composer.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index 553d690d..2c510a2b 100644
--- a/composer.json
+++ b/composer.json
@@ -2,7 +2,10 @@
"name": "nextcloud/photos",
"config": {
"optimize-autoloader": true,
- "classmap-authoritative": true
+ "classmap-authoritative": true,
+ "platform": {
+ "php": "7.2"
+ }
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
@@ -10,6 +13,7 @@
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l"
},
"require-dev": {
- "nextcloud/coding-standard": "^0.3.0"
+ "nextcloud/coding-standard": "^0.3.0",
+ "phpunit/phpunit": "^7"
}
}