forked from artgris/FileManagerBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "artgris/filemanager-bundle",
"type": "symfony-bundle",
"description": "FileManager is a simple Multilingual File Manager Bundle for Symfony",
"keywords": [
"symfony",
"bundle",
"file manager"
],
"homepage": "https://github.com/artgris/FileManagerBundle",
"license": "MIT",
"authors": [
{
"name": "Arthur Gribet",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"sensio/framework-extra-bundle": "^6.1",
"symfony/translation": "^6.0",
"symfony/twig-bridge": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/form": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/validator": "^6.0",
"symfony/asset": "^6.0",
"symfony/mime": "^6.0",
"symfony/expression-language": "^6.0",
"oomphinc/composer-installers-extender": "^2.0",
"symfony/flex": "^2"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0",
"symfony/security-bundle": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/browser-kit": "^6.0",
"symfony/var-dumper": "^6.0",
"symfony/yaml": "^6.0",
"symfony/templating": "^6.0"
},
"config": {
"sort-packages": true,
"preferred-install": {
"symfony/doctrine-bridge": "source",
"*": "dist"
},
"allow-plugins": {
"composer/installers": true,
"symfony/flex": true,
"symfony/runtime": true,
"composer/package-versions-deprecated": true,
"oomphinc/composer-installers-extender": true
}
},
"autoload": {
"psr-4": {
"Artgris\\Bundle\\FileManagerBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Artgris\\Bundle\\FileManagerBundle\\Tests\\": "/Tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}