-
Notifications
You must be signed in to change notification settings - Fork 355
/
composer.json
59 lines (59 loc) · 1.69 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
{
"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": "^7.4 || ^8.0"
},
"conflict": {
"microsoft/windowsazure": "<0.4.3"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"phpunit/phpunit": "~8.0",
"mikey179/vfsstream": "v1.x-dev as 1.7.0",
"friendsofphp/php-cs-fixer": "^3.9",
"pedrotroller/php-cs-custom-fixer": "^2.28"
},
"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"
]
}
}