forked from dustin10/VichUploaderBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 3.26 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vich/uploader-bundle",
"type": "symfony-bundle",
"description": "Ease file uploads attached to entities",
"keywords": [
"file uploads",
"upload"
],
"homepage": "https://github.com/dustin10/VichUploaderBundle",
"license": "MIT",
"authors": [
{
"name": "Dustin Dobervich",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-simplexml": "*",
"jms/metadata": "^2.1",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/form": "^4.4 || ^5.0",
"symfony/http-foundation": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/string": "^5.0"
},
"require-dev": {
"ext-sqlite3": "*",
"alcaeus/mongo-php-adapter": "^1.1",
"doctrine/doctrine-bundle": "^2.0.3",
"doctrine/mongodb-odm": "^1.2",
"doctrine/orm": "^2.7",
"knplabs/knp-gaufrette-bundle": "^0.7",
"kphoen/rusty": "dev-update-php-parser",
"league/flysystem-bundle": "^1.4",
"league/flysystem-memory": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"mikey179/vfsstream": "^1.6",
"oneup/flysystem-bundle": "^3.3",
"phpunit/phpunit": "^8.5",
"symfony/asset": "^4.4 || ^5.0",
"symfony/browser-kit": "^4.4 || ^5.0",
"symfony/css-selector": "^4.4 || ^5.0",
"symfony/doctrine-bridge": "^4.4 || ^5.0",
"symfony/dom-crawler": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^4.3 || ^5.0",
"symfony/security-csrf": "^4.4 || ^5.0",
"symfony/translation": "^4.4 || ^5.0",
"symfony/twig-bridge": "^4.4 || ^5.0",
"symfony/twig-bundle": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0",
"symfony/var-dumper": "^4.4 || ^5.0",
"symfony/yaml": "^4.4 || ^5.0"
},
"suggest": {
"doctrine/doctrine-bundle": "For integration with Doctrine",
"doctrine/mongodb-odm-bundle": "For integration with Doctrine ODM",
"doctrine/orm": "For integration with Doctrine ORM",
"doctrine/phpcr-odm": "For integration with Doctrine PHPCR",
"knplabs/knp-gaufrette-bundle": "For integration with Gaufrette",
"liip/imagine-bundle": "To generate image thumbnails",
"ocramius/proxy-manager": "To use lazy services",
"oneup/flysystem-bundle": "For integration with Flysystem",
"symfony/asset": "To generate better links",
"symfony/yaml": "To use YAML mapping"
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.14.x-dev"
}
},
"autoload": {
"psr-4": {
"Vich\\UploaderBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vich\\TestBundle\\": "tests/Fixtures/TestBundle/src",
"Vich\\UploaderBundle\\Tests\\": "tests"
}
}
}