From 816b1323cb33a1c7b8bdde686bea292a0b0e2220 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 1 Jun 2022 21:37:20 -0700 Subject: [PATCH] Fix phpunit in composer; create Woodpecker CI pipeline file --- .woodpecker.yml | 6 ++++++ appinfo/info.xml | 2 +- composer.json | 24 ++++++++++++------------ 3 files changed, 19 insertions(+), 13 deletions(-) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..9476c73 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,6 @@ +pipeline: + test: + image: php:7-cli + commands: + - apt-get update && apt-get install -y make + - make test diff --git a/appinfo/info.xml b/appinfo/info.xml index bedacd4..f067c7a 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ External Password An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password. - 0.1.1 + 1.0.0 agpl Raoul Snyman ExternalPassword diff --git a/composer.json b/composer.json index 17329d5..a4f541d 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,15 @@ { - "name": "raoul/externalpassword", - "description": "An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password.", - "type": "project", - "license": "AGPL", - "authors": [ - { - "name": "Raoul Snyman" - } - ], - "require": {}, - "require-dev": { - "phpunit/phpunit": "^5.4" + "name": "raoul/externalpassword", + "description": "An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password.", + "type": "project", + "license": "AGPL", + "authors": [ + { + "name": "Raoul Snyman" } + ], + "require": {}, + "require-dev": { + "phpunit/phpunit": "^9" + } }