-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.68 KB
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
{
"name": "knplabs/gaufrette",
"type": "library",
"description": "PHP library that provides a filesystem abstraction layer",
"keywords": [
"file",
"filesystem",
"media",
"abstraction"
],
"homepage": "http://knplabs.com",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "The contributors",
"homepage": "http://github.com/knplabs/Gaufrette/contributors"
}
],
"require": {
"php": "^8.0"
},
"conflict": {
"microsoft/windowsazure": "<0.4.3"
},
"require-dev": {
"phpspec/phpspec": "^7.0 || ^8.0",
"phpunit/phpunit": "~9.6",
"mikey179/vfsstream": "v1.x-dev as 1.7.0",
"friendsofphp/php-cs-fixer": "^3.95"
},
"suggest": {
"knplabs/knp-gaufrette-bundle": "to use with Symfony",
"ext-fileinfo": "This extension is used to automatically detect the content-type of a file in the AwsS3, OpenCloud, AzureBlogStorage and GoogleCloudStorage adapters"
},
"autoload": {
"psr-0": {
"Gaufrette": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Gaufrette\\Functional": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10.x-dev"
}
},
"archive": {
"exclude": [
"/tests",
"/phpunit.xml.dist",
"/.env.dist",
"/spec",
"/Makefile",
"/phpspec.yml",
"/docker-compose.yml",
"/docker",
"/.dockerignore"
]
}
}