-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
49 lines (49 loc) · 1.18 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
{
"name": "justus/flysystem-onedrive",
"description": "A flysystem driver for OneDrive that uses the Microsoft Graph API",
"keywords": [
"flysystem-onedrive",
"flysystem",
"onedrive",
"api"
],
"version": "v2.0.6",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Justus\\FlysystemOneDrive\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Justus\\FlysystemOneDrive\\Test\\": "tests"
}
},
"authors": [
{
"name": "Justus Donner",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"league/flysystem": "^3.12",
"microsoft/microsoft-graph": "^1.110",
"illuminate/support": "^v11.9.2"
},
"scripts": {
"test": "vendor/bin/phpunit",
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^10.5.20 || ^11.1.3",
"laravel/framework": "^v11.10",
"orchestra/testbench": "^v9.1.2"
}
}