This repository was archived by the owner on Dec 14, 2024. It is now read-only.
forked from artgris/FileManagerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.68 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "malditaes/maldito-filemanager-bundle",
"type": "symfony-bundle",
"description": "FileManager is a simple Multilingual File Manager Bundle for Symfony, compatible with Gutenberg",
"keywords": [
"symfony",
"bundle",
"file manager"
],
"homepage": "https://github.com/artgris/FileManagerBundle",
"license": "MIT",
"authors": [
{
"name": "Arthur Gribet",
"email": "a.gribet@gmail.com"
},
{
"name": "David Fernández Sancho",
"email": "dfernandez@maldita.es"
}
],
"require": {
"php": "^7.1.3|^8.0.0",
"sensio/framework-extra-bundle": "^4.4|^5.0|^6.0",
"symfony/translation": "^4.4|^5.0",
"symfony/twig-bridge": "^4.4|^5.0",
"symfony/twig-bundle": "^4.4|^5.0",
"symfony/form": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/asset": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"oomphinc/composer-installers-extender": "^1.1|^2.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.3.5|^5.0",
"symfony/security-bundle": "^4.4|^5.0",
"symfony/css-selector": "^4.4|^5.0",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"symfony/templating": "^4.4|^5.0"
},
"config": {
"sort-packages": true,
"preferred-install": {
"symfony/doctrine-bridge": "source",
"*": "dist"
}
},
"autoload": {
"psr-4": {
"Artgris\\Bundle\\FileManagerBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Artgris\\Bundle\\FileManagerBundle\\Tests\\": "/Tests/"
}
}
}