Skip to content

Commit e9a59f6

Browse files
committed
Merge remote-tracking branch 'origin/main' into merge-main
2 parents c1ed57f + 9d75472 commit e9a59f6

14 files changed

Lines changed: 951 additions & 200 deletions

build/phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<exclude-pattern>*/vendor/*|*/build/*</exclude-pattern>
1919

2020
<rule ref="PHPCompatibility"/>
21-
<config name="testVersion" value="7.3-"/>
21+
<config name="testVersion" value="8.0-"/>
2222

2323
<!-- Include the whole PSR-12 standard -->
2424
<rule ref="PSR12">

run-solid-test-suite.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ function setup {
66
docker build -t solid-nextcloud .
77
docker build -t pubsub-server https://github.com/pdsinterop/php-solid-pubsub-server.git#main
88
docker pull michielbdejong/nextcloud-cookie
9-
docker pull solidtestsuite/webid-provider-tests:v2.0.3
10-
docker tag solidtestsuite/webid-provider-tests:v2.0.3 webid-provider-tests
9+
docker pull solidtestsuite/webid-provider-tests:v2.1.0
10+
docker tag solidtestsuite/webid-provider-tests:v2.1.0 webid-provider-tests
1111
docker pull solidtestsuite/solid-crud-tests:v6.0.0
1212
docker tag solidtestsuite/solid-crud-tests:v6.0.0 solid-crud-tests
1313
docker pull solidtestsuite/web-access-control-tests:v7.1.0

solid/composer.json

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,48 @@
2222
],
2323
"require": {
2424
"php": "^8.0",
25+
"ext-dom": "*",
2526
"ext-json": "*",
27+
"ext-mbstring": "*",
2628
"ext-openssl": "*",
2729
"easyrdf/easyrdf": "^1.1.1",
2830
"laminas/laminas-diactoros": "^2.8",
2931
"lcobucci/jwt": "^4.1",
30-
"pdsinterop/flysystem-nextcloud":"^0.2",
32+
"pdsinterop/flysystem-nextcloud": "^0.2",
3133
"pdsinterop/flysystem-rdf": "^0.5",
32-
"pdsinterop/solid-auth": "^0.7",
34+
"pdsinterop/solid-auth": "v0.10.1",
3335
"pdsinterop/solid-crud": "dev-feature/notificationsInterface",
3436
"psr/log" : "^1.1"
3537
},
3638
"require-dev": {
39+
"doctrine/dbal": "*",
40+
"nextcloud/server": "*",
3741
"phpunit/phpunit": "^8 || ^9"
38-
}
42+
},
43+
"repositories": [
44+
{
45+
"type": "package",
46+
"package": {
47+
"name": "nextcloud/server",
48+
"version": "24.0.0",
49+
"dist": {
50+
"url": "https://github.com/nextcloud/server/archive/refs/tags/v24.0.0.zip",
51+
"type": "zip"
52+
},
53+
"source": {
54+
"url": "https://github.com/nextcloud/server.git",
55+
"type": "git",
56+
"reference": "master"
57+
},
58+
"autoload": {
59+
"psr-4": {
60+
"": "lib/private/legacy",
61+
"OC\\": "lib/private",
62+
"OC\\Core\\": "core/",
63+
"OCP\\": "lib/public"
64+
}
65+
}
66+
}
67+
}
68+
]
3969
}

0 commit comments

Comments
 (0)