-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
82 lines (82 loc) · 1.98 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
81
82
{
"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": "^8.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"nimbusoft/flysystem-openstack-swift": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10|^10.5",
"mockery/mockery": "^1.4.4",
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "^8.0|^9.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"
]
}
}