forked from sausin/laravel-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (79 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sausin/laravel-ovh",
"description": "OVH Object Storage driver for laravel",
"keywords": [
"filesystem", "filesystems", "files", "storage",
"flysystem", "openstack", "opencloud", "swift",
"ovh", "laravel", "driver"
],
"license": "MIT",
"authors": [
{
"name": "Saurabh Singhvi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sausin\\LaravelOvh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sausin\\LaravelOvh\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4",
"illuminate/console": "^5.8|^6.0|^7.0|^8.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0",
"nimbusoft/flysystem-openstack-swift": "^0.3.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"mockery/mockery": "^1.3 >= 1.3.1",
"friendsofphp/php-cs-fixer": "^2.16.1",
"brainmaestro/composer-git-hooks": "^2.8",
"league/flysystem-cached-adapter": "^1.0 >= 1.0.2",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0"
},
"extra": {
"laravel": {
"providers": [
"Sausin\\LaravelOvh\\OVHServiceProvider"
]
},
"hooks": {
"pre-commit": [
"composer lint",
"git update-index --again"
],
"pre-push": [
"composer test"
],
"post-merge": [
"composer install"
]
}
},
"scripts": {
"post-install-cmd": [
"Sausin\\LaravelOvh\\Composer\\Scripts::devOnly",
"cghooks add --ignore-lock"
],
"post-update-cmd": [
"Sausin\\LaravelOvh\\Composer\\Scripts::devOnly",
"cghooks update"
],
"lint": "php-cs-fixer fix",
"test:lint": "@lint --dry-run",
"test:unit": "phpunit",
"test": [
"@test:lint",
"@test:unit"
]
},
"suggest": {
"league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0 >= 1.0.2)."
}
}