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" + } }