-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
45 lines (40 loc) · 1.28 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
{
"name": "iphp/filestore-bundle",
"type": "bundle",
"description": "Upload files for doctrine entities in symfony 2 project",
"keywords": ["file upload", "sonata admin file upload", "upload", "symfony file upload"],
"homepage": "http://symfonydev.ru",
"license": "MIT",
"authors": [
{
"name": "Vitiko",
"email": "vitiko@mail.ru"
}
],
"require": {
"php": "^5.5 || ^7.0",
"symfony/framework-bundle": "^2.8|^3.0"
},
"require-dev": {
"symfony/form": "^2.8|^3.0",
"symfony/twig-bundle": "^2.8|^3.0",
"symfony/class-loader": "@stable",
"symfony/finder": "@stable",
"symfony/browser-kit": "@stable",
"symfony/css-selector": "@stable",
"symfony/validator": "@stable",
"symfony/process": "@stable",
"symfony/yaml": "@stable",
"sensio/framework-extra-bundle": "@stable",
"doctrine/doctrine-bundle": "@stable",
"doctrine/orm": "@stable",
"mikey179/vfsStream": "@stable",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-0": {
"Iphp\\FileStoreBundle": ""
}
},
"target-dir": "Iphp/FileStoreBundle"
}