-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.54 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
{
"name": "darkanakin41/media-bundle",
"type": "symfony-bundle",
"description": "Pierre LEJEUNE MediaBundle",
"keywords": [
"media",
"image",
"symfony",
"bundle"
],
"homepage": "https://github.com/darkanakin41/media-bundle",
"license": "MIT",
"authors": [
{
"name": "Pierre LEJEUNE",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"darkanakin41/core-bundle": "dev-master",
"symfony/asset": "*",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/orm-pack": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/yaml": "*"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.3",
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^8.4",
"symfony/console": "^4.0",
"symfony/test-pack": "*"
},
"suggest": {
"ext-gd": "If you want to use the image resizing functions",
"ext-fileinfo": "If you want to use the file information functions"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Darkanakin41\\MediaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Darkanakin41\\MediaBundle\\Tests\\": "tests/",
"Darkanakin41\\CoreBundle\\Tests\\": "vendor/darkanakin41/core-bundle/tests/",
"AppTestBundle\\": "tests/Fixtures/AppTestBundle/"
}
}
}