-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·46 lines (46 loc) · 1.12 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
{
"name": "delaneymethod/flysystem-sharepoint",
"description": "Flysystem Adapter for the Sharepoint 2013 REST API",
"keywords": [
"delaneymethod",
"flysystem-sharepoint",
"flysystem",
"sharepoint",
"rest",
"api"
],
"homepage": "https://github.com/delaneymethod/flysystem-sharepoint",
"license": "MIT",
"authors": [
{
"name": "Sean Delaney",
"email": "[email protected]",
"homepage": "https://www.delaneymethod.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"league/flysystem": "2.1.1",
"delaneymethod/sharepoint-api": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"DelaneyMethod\\FlysystemSharepoint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DelaneyMethod\\FlysystemSharepoint\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}