forked from dustin10/VichUploaderBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 3.07 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
{
"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": "*",
"behat/transliterator": "^1.2",
"jms/metadata": "^2.0",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/event-dispatcher": "^3.4 || ^4.0",
"symfony/form": "^3.4.19 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/property-access": "^3.4 || ^4.0",
"symfony/templating": "^3.4 || ^4.0"
},
"require-dev": {
"ext-sqlite3": "*",
"alcaeus/mongo-php-adapter": "^1.1",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/mongodb-odm": "^1.2",
"doctrine/orm": "^2.5",
"knplabs/knp-gaufrette-bundle": "^0.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"mikey179/vfsstream": "^1.6",
"oneup/flysystem-bundle": "^3.0",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^3.4 || ^4.0",
"symfony/css-selector": "^3.4 || ^4.0",
"symfony/doctrine-bridge": "^3.4 || ^4.0",
"symfony/dom-crawler": "^3.4 || ^4.0",
"symfony/framework-bundle": "^3.4.23 || ^4.2.4",
"symfony/phpunit-bridge": "^4.3",
"symfony/security-csrf": "^3.4 || ^4.0",
"symfony/translation": "^3.4 || ^4.0",
"symfony/twig-bridge": "^3.4 || ^4.0",
"symfony/twig-bundle": "^3.4 || ^4.0",
"symfony/validator": "^3.4 || ^4.0",
"symfony/var-dumper": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.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/yaml": "To use YAML mapping",
"willdurand/propel-eventdispatcher-bundle": "For integration with Propel"
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.10.x-dev"
}
},
"autoload": {
"psr-4": {
"Vich\\UploaderBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Vich\\TestBundle\\": "Tests/Fixtures/App/src/TestBundle/"
}
}
}