generated from zingimmick/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
80 lines (80 loc) · 2.38 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": "zing/laravel-flysystem-obs",
"description": "Flysystem Adapter for OBS",
"keywords": ["obs", "laravel", "flysystem", "filesystem", "storage", "file", "files"],
"license": "MIT",
"homepage": "https://github.com/zingimmick/laravel-flysystem-obs",
"support": {
"issues": "https://github.com/zingimmick/laravel-flysystem-obs/issues",
"source": "https://github.com/zingimmick/laravel-flysystem-obs"
},
"authors": [
{
"name": "zingimmick",
"email": "[email protected]",
"homepage": "https://github.com/zingimmick"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0",
"illuminate/filesystem": "^9.30 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"zing/esdk-obs-php": "^3.21.6",
"zing/flysystem-obs": "^2.2 || ^3.0"
},
"require-dev": {
"league/flysystem-path-prefixing": "^3.3",
"league/flysystem-read-only": "^3.3",
"mockery/mockery": "~1.3.3 || ^1.4.2",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.5 || ^10.0 || ^11.0",
"zing/coding-standard": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Zing\\LaravelFlysystem\\Obs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zing\\LaravelFlysystem\\Obs\\Tests\\": "tests"
}
},
"scripts": {
"lint:rector": "@fix:rector --dry-run",
"lint:ecs": "ecs check --ansi",
"lint:phpstan": "phpstan analyse --ansi",
"fix:rector": "rector process --ansi",
"fix:ecs": "@lint:ecs --fix",
"test:phpunit": "phpunit --colors=always",
"lint": [
"@lint:rector",
"@lint:ecs",
"@lint:phpstan"
],
"fix": [
"@fix:rector",
"@fix:ecs"
],
"test": [
"@test:phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"Zing\\LaravelFlysystem\\Obs\\ObsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}