-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.01 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
{
"name": "ricwein/filesystem",
"description": "Filesystem abstraction layer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Richard Weinhold",
"email": "git@ricwein.com"
}
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-zip": "*",
"ext-openssl": "*"
},
"require-dev": {
"intervention/image": "^2.7",
"league/flysystem": "^3.12",
"overtrue/phplint": "^9.0",
"phpunit/phpunit": "^10.0",
"ext-gd": "*"
},
"config": {
"sort-packages": true
},
"suggest": {
"ext-intl": "Use Transliterator for automatic special-char transliateration to ascii",
"ext-gd": "Allows easy usage of gd resouces as Storage\\Memory\\Resource()",
"intervention/image": "Adds image-manipulation capabilities",
"league/flysystem": "Support for more filesystems"
},
"autoload": {
"psr-4": {
"ricwein\\FileSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ricwein\\FileSystem\\Tests\\": "tests"
}
}
}