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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 11:44:40 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 12:04:20 +0300
commit2d20e4c37de724f6c95cf7cb487e34d1645bb6ae (patch)
tree36491adc9f661d7450bcc572052183eb5021e9c0 /appinfo
parent87e241a60b12cff07e3b3b50317a968b3667610f (diff)
Drop php7.2 and add the nextcloud coding standard
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php24
2 files changed, 13 insertions, 13 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 50bbfeb..9851b1d 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_totp/dd1e48deec73a250886f35f3924186f5357f4c5f/screenshots/enter_challenge.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_totp/dd1e48deec73a250886f35f3924186f5357f4c5f/screenshots/settings.png</screenshot>
<dependencies>
- <php min-version="7.2" max-version="7.4" />
+ <php min-version="7.3" max-version="7.4" />
<nextcloud min-version="18" max-version="21" />
</dependencies>
<two-factor-providers>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index b58d54f..44444c6 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -19,16 +19,16 @@
*
*/
return [
- 'routes' => [
- [
- 'name' => 'settings#state',
- 'url' => '/settings/state',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'settings#enable',
- 'url' => '/settings/enable',
- 'verb' => 'POST'
- ],
- ]
+ 'routes' => [
+ [
+ 'name' => 'settings#state',
+ 'url' => '/settings/state',
+ 'verb' => 'GET'
+ ],
+ [
+ 'name' => 'settings#enable',
+ 'url' => '/settings/enable',
+ 'verb' => 'POST'
+ ],
+ ]
];