-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (64 loc) · 1.6 KB
/
composer.json
File metadata and controls
66 lines (64 loc) · 1.6 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
59
60
61
62
63
64
65
66
{
"name": "anfallnorr/file-manager-system",
"description": "A Symfony bundle for file management (move, copy, delete, resize, etc.).",
"type": "symfony-bundle",
"keywords": [
"symfony",
"symfony-bundle",
"file-manager",
"filesystem",
"file-upload",
"file-system",
"file-copy",
"file-delete",
"file-move"
],
"authors": [
{
"name": "Js info (Julien Senechal)",
"email": "contact@js-info.fr",
"homepage": "https://js-info.fr",
"role": "Developer"
}
],
"homepage": "https://github.com/Anfallnorr/FileManagerSystem",
"support": {
"issues": "https://github.com/Anfallnorr/FileManagerSystem/issues",
"source": "https://github.com/Anfallnorr/FileManagerSystem",
"docs": "https://github.com/Anfallnorr/FileManagerSystem#readme"
},
"require": {
"php": ">=8.4",
"symfony/asset": "^7.2 || ^8.0",
"symfony/framework-bundle": "^7.2 || ^8.0",
"symfony/form": "^7.2 || ^8.0",
"symfony/http-foundation": "^7.2 || ^8.0",
"symfony/mime": "^7.2 || ^8.0",
"symfony/string": "^7.2 || ^8.0",
"symfony/translation": "^7.2 || ^8.0",
"symfony/twig-bundle": "^7.2 || ^8.0",
"symfony/validator": "^7.2 || ^8.0"
},
"autoload": {
"psr-4": {
"Anfallnorr\\FileManagerSystem\\": "src/"
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"bundles": {
"Anfallnorr\\FileManagerSystem\\FileManagerSystem": ["all"]
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Anfallnorr/FileManagerSystem.git"
}
],
"license": "MIT"
}