-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
59 lines (59 loc) · 1.44 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
55
56
57
58
59
{
"name": "spatie/dropbox-api",
"description": "A minimal implementation of Dropbox API v2",
"keywords": [
"spatie",
"dropbox-api",
"dropbox",
"api",
"v2"
],
"homepage": "https://github.com/spatie/dropbox-api",
"license": "MIT",
"authors": [
{
"name": "Alex Vanderbist",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"graham-campbell/guzzle-factory": "^4.0.2|^5.0|^6.0|^7.0",
"guzzlehttp/guzzle": "^6.2|^7.0"
},
"require-dev": {
"laravel/pint": "^1.10.1",
"pestphp/pest": "^2.6.3",
"phpstan/phpstan": "^1.10.16"
},
"autoload": {
"psr-4": {
"Spatie\\Dropbox\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Dropbox\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"pint": "vendor/bin/pint",
"phpstan": "vendor/bin/phpstan analyze"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}