-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.84 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
{
"name": "thomasvantuycom/flysystem-cloudinary",
"description": "Cloudinary filesystem adapter for Flysystem.",
"type": "library",
"keywords": [
"cloudinary",
"flysystem",
"filesystem",
"storage",
"file",
"files"
],
"license": "MIT",
"authors": [
{
"name": "Thomas Vantuycom",
"email": "[email protected]",
"homepage": "https://thomasvantuycom.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/thomasvantuycom/flysystem-cloudinary/issues",
"source": "https://github.com/thomasvantuycom/flysystem-cloudinary",
"docs": "https://github.com/thomasvantuycom/flysystem-cloudinary",
"rss": "https://github.com/thomasvantuycom/flysystem-cloudinary/releases.atom"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/thomasvantuycom"
}
],
"require": {
"php": "^8.0.2",
"league/flysystem": "^3.23",
"cloudinary/cloudinary_php": "^2.12"
},
"require-dev": {
"league/flysystem-adapter-test-utilities": "^3.21",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"symplify/easy-coding-standard": "^12.5"
},
"autoload": {
"psr-4": {
"ThomasVantuycom\\FlysystemCloudinary\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ThomasVantuycom\\FlysystemCloudinary\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests",
"phpstan": "phpstan analyse --level=4 src",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"config": {
"sort-packages": true
}
}