feat: bump compat to nc 27-29
This commit is contained in:
parent
f62e7ac15b
commit
c1d63510e4
4 changed files with 535 additions and 389 deletions
|
@ -5,7 +5,7 @@
|
||||||
<name>SCIM Service Provider</name>
|
<name>SCIM Service Provider</name>
|
||||||
<summary>Implements SCIM protocol as a Service Provider</summary>
|
<summary>Implements SCIM protocol as a Service Provider</summary>
|
||||||
<description><![CDATA[This app allows to sync users and groups from a scim client.]]></description>
|
<description><![CDATA[This app allows to sync users and groups from a scim client.]]></description>
|
||||||
<version>1.0.0-alpha.0</version>
|
<version>1.0.0-alpha.1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="contact@indiehosters.net" homepage="https://indiehosters.net/">IndieHosters</author>
|
<author mail="contact@indiehosters.net" homepage="https://indiehosters.net/">IndieHosters</author>
|
||||||
<author homepage="https://www.audriga.com/">Audriga</author>
|
<author homepage="https://www.audriga.com/">Audriga</author>
|
||||||
|
@ -13,6 +13,6 @@
|
||||||
<category>integration</category>
|
<category>integration</category>
|
||||||
<bugs>https://lab.libreho.st/libre.sh/scim/scimserviceprovider</bugs>
|
<bugs>https://lab.libreho.st/libre.sh/scim/scimserviceprovider</bugs>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<nextcloud min-version="26" max-version="28"/>
|
<nextcloud min-version="27" max-version="29"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</info>
|
</info>
|
||||||
|
|
|
@ -43,7 +43,7 @@ func main() {
|
||||||
WithExec([]string{"i", "--no-dev", "--ignore-platform-reqs"}).
|
WithExec([]string{"i", "--no-dev", "--ignore-platform-reqs"}).
|
||||||
Directory("vendor")
|
Directory("vendor")
|
||||||
|
|
||||||
output := client.Container().From("docker.io/nextcloud:26").
|
output := client.Container().From("docker.io/nextcloud:27").
|
||||||
WithWorkdir("/scimserviceprovider").
|
WithWorkdir("/scimserviceprovider").
|
||||||
WithDirectory("vendor", vendor).
|
WithDirectory("vendor", vendor).
|
||||||
WithDirectory(".", client.Host().Directory(".", dagger.HostDirectoryOpts{
|
WithDirectory(".", client.Host().Directory(".", dagger.HostDirectoryOpts{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"vimeo/psalm": "^4.23",
|
"vimeo/psalm": "^4.23",
|
||||||
"nextcloud/ocp": "v26.0.9",
|
"nextcloud/ocp": "^27.1",
|
||||||
"nextcloud/coding-standard": "^1.1"
|
"nextcloud/coding-standard": "^1.1"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
@ -22,12 +22,12 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"repositories": {
|
"repositories": [
|
||||||
"scim": {
|
{
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "git@github.com:audriga/scim-server-php.git"
|
"url": "https://lab.libreho.st/libre.sh/scim/scim-server-php.git"
|
||||||
}
|
}
|
||||||
},
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"audriga/scim-server-php": "dev-main",
|
"audriga/scim-server-php": "dev-main",
|
||||||
"doctrine/lexer": "^1.2"
|
"doctrine/lexer": "^1.2"
|
||||||
|
|
908
composer.lock
generated
908
composer.lock
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue