Fix phpunit in composer; create Woodpecker CI pipeline file
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Raoul Snyman 2022-06-01 21:37:20 -07:00
parent 773b852817
commit 816b1323cb
3 changed files with 19 additions and 13 deletions

6
.woodpecker.yml Normal file
View File

@ -0,0 +1,6 @@
pipeline:
test:
image: php:7-cli
commands:
- apt-get update && apt-get install -y make
- make test

View File

@ -5,7 +5,7 @@
<name>External Password</name>
<summary>An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password.</summary>
<description><![CDATA[An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password. This is useful in conjunction with an app like external_users.]]></description>
<version>0.1.1</version>
<version>1.0.0</version>
<licence>agpl</licence>
<author mail="raoul@snyman.info" >Raoul Snyman</author>
<namespace>ExternalPassword</namespace>

View File

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