forked from alextartan/flysystem-libsodium-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.68 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
{
"name": "alextartan/flysystem-libsodium-adapter",
"description": "On-the-fly encrypt and decrypt flysystem files",
"keywords": [
"encryption",
"flysystem",
"libsodium"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Alex Tartan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-sodium": "*",
"alextartan/helpers": "2.0.* || 2.1.*",
"league/flysystem": "^1.0.63",
"league/flysystem-adapter-decorator": "^1.0.0",
"league/flysystem-aws-s3-v3": "^1.0.23",
"monolog/monolog": "^2.0.2"
},
"require-dev": {
"ext-openssl": "*",
"infection/infection": "^0.16.4",
"league/flysystem-memory": "^1.0.2",
"php-coveralls/php-coveralls": "^2.2.0",
"phpunit/phpunit": "^8.5.2 || ^9.0.0",
"phpstan/phpstan": "^0.12.5",
"phpstan/phpstan-strict-rules": "^0.12.1",
"phpstan/phpstan-phpunit": "^0.12.6",
"symfony/var-dumper": "^5.0.2",
"squizlabs/php_codesniffer": "3.5.*",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"AlexTartan\\Flysystem\\Adapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlexTartanTest\\Flysystem\\Adapter\\": "test/"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"phpstan": "vendor/bin/phpstan analyse",
"test-infection": "vendor/bin/infection --threads=4",
"test-coverage": "vendor/bin/phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "vendor/bin/php-coveralls -v"
}
}