-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 1.77 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
{
"name": "szhorvath/flysystem-aws-s3-plus",
"description": "AWS S3 filesystem adapter for Flysystem extended with S3 bucket object versioning",
"keywords": [
"aws",
"s3",
"flysystem",
"filesystem",
"storage",
"file",
"files",
"object",
"versioning"
],
"type": "library",
"require": {
"php": "^8.1",
"league/flysystem-aws-s3-v3": "^3.19.0",
"illuminate/conditionable": "^10.31",
"illuminate/filesystem": "^10.31",
"illuminate/support": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Szhorvath\\FlysystemAwsS3Plus\\": "src/",
"Szhorvath\\FlysystemAwsS3Plus\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sandor Horvath",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^2.24",
"orchestra/testbench": "^8.15",
"pestphp/pest-plugin-type-coverage": "^2.4",
"laravel/pint": "^1.13",
"defstudio/pest-plugin-laravel-expectations": "^2.1"
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Szhorvath\\FlysystemAwsS3Plus\\AwsS3PlusFilesystemServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": [
"@php vendor/bin/pest"
],
"pest": "vendor/bin/pest --parallel",
"pest-coverage": "vendor/bin/pest --coverage",
"pest-type": "vendor/bin/pest --type-coverage",
"pint": "vendor/bin/pint"
}
}