Fix phpunit in composer; create Woodpecker CI pipeline file
This commit is contained in:
parent
773b852817
commit
816b1323cb
3 changed files with 19 additions and 13 deletions
6
.woodpecker.yml
Normal file
6
.woodpecker.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
pipeline:
|
||||
test:
|
||||
image: php:7-cli
|
||||
commands:
|
||||
- apt-get update && apt-get install -y make
|
||||
- make test
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue