-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.45 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
{
"name": "swisnl/flysystem-encrypted",
"type": "library",
"description": "Flysystem Adapter Encryption Decorator",
"keywords": [
"swisnl",
"flysystem",
"adapter",
"decorator",
"encrypted"
],
"homepage": "https://github.com/swisnl/flysystem-encrypted",
"license": "MIT",
"authors": [
{
"name": "Jasper Zonneveld",
"email": "[email protected]",
"homepage": "https://github.com/JaZo",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/encryption": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"league/flysystem": "^2.0|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"league/flysystem-adapter-test-utilities": "^2.0|^3.0",
"league/flysystem-memory": "^2.0|^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Swis\\Flysystem\\Encrypted\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swis\\Flysystem\\Encrypted\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"config": {
"sort-packages": true
}
}