-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.45 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.45 KB
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
{
"name": "lifeishex/php-file-manager",
"description": "A modern, secure PHP file manager with Bulma UI - featuring drag-and-drop, multi-select operations, and framework integration",
"type": "library",
"license": "MIT",
"keywords": [
"file-manager",
"php",
"bulma",
"file-upload",
"file-browser",
"drag-and-drop",
"multi-select",
"php8",
"web-file-manager",
"file-operations"
],
"authors": [
{
"name": "Mahdi Hezaveh",
"email": "mahdi.hezaveh@icloud.com"
}
],
"homepage": "https://github.com/LifeIsHex/php-file-manager",
"support": {
"issues": "https://github.com/LifeIsHex/php-file-manager/issues",
"source": "https://github.com/LifeIsHex/php-file-manager"
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"suggest": {
"ext-imagick": "For advanced image processing",
"ext-zip": "Required for multi-file download as ZIP"
},
"autoload": {
"psr-4": {
"FileManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FileManager\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}