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

github.com/nextcloud/files_retention.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-09-05 13:38:30 +0300
committerGitHub <noreply@github.com>2018-09-05 13:38:30 +0300
commitefc7adfed41a673c9ac13aa390405ae7bbd9b6dc (patch)
tree9e0285d3d59bdd2ff56ca70f5e4fe091030e7cba
parent7b428f97f7bdd30d6c90806bc2c911b9612241a5 (diff)
parentd8f6338f489ad593d3e49aed87f645a8fa8ce3f4 (diff)
Merge pull request #47 from nextcloud/update-stable14-target-versionsv1.3.0
Update stable14 target versions
-rw-r--r--.drone.yml2
-rw-r--r--.travis.yml2
-rw-r--r--appinfo/info.xml27
-rw-r--r--tests/bootstrap.php2
4 files changed, 20 insertions, 13 deletions
diff --git a/.drone.yml b/.drone.yml
index 381890f..6faa4e3 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -8,7 +8,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=files_retention
- - CORE_BRANCH=master
+ - CORE_BRANCH=stable14
- DB=sqlite
commands:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
diff --git a/.travis.yml b/.travis.yml
index a4c4805..5bfdb47 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ php:
env:
global:
- - CORE_BRANCH=master
+ - CORE_BRANCH=stable14
- APP_NAME=files_retention
matrix:
- DB=sqlite
diff --git a/appinfo/info.xml b/appinfo/info.xml
index b32a514..fb690b9 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,27 +1,34 @@
<?xml version="1.0"?>
-<info>
+<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>files_retention</id>
<name>Retention</name>
- <licence>AGPL</licence>
- <author>Roeland Jago Douma</author>
+ <summary>This application allows for automatic deletion of files after a given time</summary>
<description>This application allows for automatic deletion of files after a given time</description>
<version>1.3.0</version>
+ <licence>agpl</licence>
+ <author>Roeland Jago Douma</author>
+ <namespace>Files_Retention</namespace>
+
<types>
<filesystem/>
</types>
+
+ <documentation>
+ <admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-retention</admin>
+ </documentation>
+
<category>tools</category>
+
<website>https://github.com/nextcloud/files_retention</website>
<bugs>https://github.com/nextcloud/files_retention/issues</bugs>
- <repository type="git">https://github.com/nextcloud/files_retention.git</repository>
- <namespace>Files_Retention</namespace>
+ <repository>https://github.com/nextcloud/files_retention.git</repository>
+
+ <screenshot>https://raw.githubusercontent.com/nextcloud/files_retention/master/screenshots/1.png</screenshot>
+
<dependencies>
<nextcloud min-version="14" max-version="14" />
</dependencies>
- <screenshot>https://raw.githubusercontent.com/nextcloud/files_retention/master/screenshots/1.png</screenshot>
-
- <documentation>
- <admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-retention</admin>
- </documentation>
<settings>
<admin>OCA\Files_Retention\Settings\Admin</admin>
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 881552a..6783ef0 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -28,7 +28,7 @@ if (!defined('PHPUNIT_RUN')) {
require_once __DIR__ . '/../../../lib/base.php';
-if(!class_exists('PHPUnit_Framework_TestCase')) {
+if(!class_exists('\PHPUnit\Framework\TestCase')) {
require_once('PHPUnit/Autoload.php');
}
\OC_App::enable('files_retention');