forked from jedlikowski/laravel-nextcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·52 lines (52 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
{
"name": "tyangjawi03/laravel-nextcloud",
"type": "library",
"version": "1.0.0",
"description": "Laravel 5 NextCloud Filesystem",
"keywords": [
"jedlikowski",
"laravel-nextcloud"
],
"homepage": "https://github.com/tyangjawi03/laravel-nextcloud",
"license": "MIT",
"authors": [
{
"name": "Jakub Jedlikowski",
"role": "Developer"
},
{
"name": "Bashir Arrohman",
"role": "Developer"
}
],
"require": {
"php": "~5.6|^7.0",
"illuminate/filesystem": "5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || 6.* || 7.*",
"league/flysystem-webdav": "^1.0.8",
"jakeasmith/http_build_url": "^1"
},
"require-dev": {
"orchestra/testbench": "^3.0",
"phpunit/phpunit": "~5.0|~6.0|~7.0|~8.0"
},
"autoload": {
"psr-4": {
"Jedlikowski\\NextCloudStorage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jedlikowski\\NextCloudStorage\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Jedlikowski\\NextCloudStorage\\NextCloudServiceProvider"
]
}
}
}