forked from gwsn/flysystem-sharepoint-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.07 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
{
"name": "gwsn/flysystem-sharepoint-adapter",
"description": "[beta] Adapter for flysystem to use sharepoint as filestore",
"license": "MIT",
"homepage": "https://github.com/gwsn/packages/flysystem-sharepoint-adapter",
"keywords": [
"flysystem",
"sharepoint"
],
"authors": [
{
"name": "Global Web Systems B.V.",
"homepage": "https://www.globalwebsystems.nl"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"gwsn/sharepoint-sdk": "^1.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"league/flysystem-adapter-test-utilities": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"GWSN\\FlysystemSharepoint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UnitTest\\GWSN\\FlysystemSharepoint\\": "tests"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"unit-test": "@test"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}