-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
53 lines (53 loc) · 1.33 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
{
"name": "kapersoft/flysystem-sharefile",
"description": "Flysystem Adapter for ShareFile",
"keywords": [
"kapersoft",
"flysystem-sharefile",
"flysystem",
"sharfile",
"api"
],
"homepage": "https://github.com/kapersoft/flysystem-sharefile",
"license": "MIT",
"authors": [
{
"name": "Jan Willem Kaper",
"email": "[email protected]",
"homepage": "https://kapersoft.com",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"ext-curl": "*",
"kapersoft/sharefile-api": "^1.1.0",
"league/flysystem": "^1.0.41"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.5",
"fzaninotto/faker": "^1.7",
"larapack/dd": "^1.1",
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^6.0",
"sabre/dav": "^3.2"
},
"autoload": {
"psr-4": {
"Kapersoft\\FlysystemSharefile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kapersoft\\FlysystemSharefile\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}