-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.19 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"autoload": {
"psr-4": {
"Pdsinterop\\Flysystem\\Adapter\\": "src/"
}
},
"config": {
"sort-packages": true,
"bin-dir": "./bin",
"platform": {
"php": "8.0",
"ext-mbstring": "0.0.0"
}
},
"description": "Flysystem adapter for the Nextcloud filesystem.",
"license": "MIT",
"name": "pdsinterop/flysystem-nextcloud",
"repositories": [
{
"type": "package",
"package": {
"name": "nextcloud/server",
"version": "24.0.0",
"dist": {
"url": "https://github.com/nextcloud/server/archive/refs/tags/v24.0.0.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/nextcloud/server.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-4": {
"": "lib/private/legacy",
"OC\\": "lib/private",
"OC\\Core\\": "core/",
"OCP\\": "lib/public"
}
}
}
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"league/flysystem": "^1.0"
},
"require-dev": {
"nextcloud/server": "*",
"phpunit/phpunit": "^9"
},
"type": "library"
}