-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
50 lines (50 loc) · 1.62 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
{
"name": "barryvdh/elfinder-flysystem-driver",
"description": "A Flysystem Driver for elFinder",
"license": "MIT",
"keywords": ["elfinder", "flysystem", "filesystem"],
"authors": [
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^8.1",
"studio-42/elfinder": "^2.1.62",
"league/flysystem": "^3",
"intervention/image": "^3"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.4",
"league/flysystem-memory": "^3"
},
"suggest": {
"league/glide": "1.x to display images through Glide"
},
"autoload": {
"classmap": ["elFinderVolumeFlysystem.php"],
"psr-4": {
"Barryvdh\\elFinderFlysystemDriver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Barryvdh\\elFinderFlysystemDriver\\Tests\\": "tests/"
}
},
"scripts": {
"actions": "composer test && composer analyse && composer check-style",
"test": "phpunit",
"analyse": "phpstan analyse src tests --level=9",
"check-style": "phpcs -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}