-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.68 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
{
"name": "mezcalito/ux-filemanager",
"type": "symfony-bundle",
"description": "Effortless file management with Symfony UX and Mezcalito UX FileManager",
"homepage": "https://github.com/Mezcalito/imgproxy-bundle",
"keywords": [
"symfony-ux",
"filemanager"
],
"license": "MIT",
"authors": [
{
"name": "Mezcalito",
"email": "[email protected]",
"homepage": "https://www.mezcalito.fr/"
}
],
"require": {
"php": ">=8.3",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/options-resolver": "^6.4|^7.0",
"symfony/routing": "^6.4|^7.0",
"symfony/ux-twig-component": "^2.17",
"symfony/ux-live-component": "^2.17",
"twig/twig": "^3.0.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.1",
"rector/rector": "^1.1",
"symfony/asset": "^6.4|^7.0",
"symfony/asset-mapper": "^6.4|^7.0",
"symfony/browser-kit": "^7.1",
"symfony/css-selector": "^7.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/stimulus-bundle": "^2.17",
"symfony/test-pack": "^1.0",
"symfony/twig-bundle": "^6.4|^7.0",
"symfony/web-profiler-bundle": "^7.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mezcalito\\FileManagerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mezcalito\\FileManagerBundle\\Tests\\TestApplication\\": "tests/TestApplication/src",
"Mezcalito\\FileManagerBundle\\Tests\\": "tests"
},
"files": [ "tests/helper-functions.php" ]
}
}