-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.86 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
{
"name": "johnkrovitch/media-bundle",
"description": "Media Bundle for Cms",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "johnkrovitch",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-gd": "*",
"ext-json": "*",
"johnkrovitch/configuration": "^2.1",
"johnkrovitch/orm-pack": "^3.0",
"league/flysystem-bundle": "^2.0",
"liip/imagine-bundle": "^2.2",
"pagerfanta/doctrine-collections-adapter": "^3.4",
"pagerfanta/doctrine-orm-adapter": "^3.4",
"pagerfanta/twig": "^3.5",
"symfony/asset": "^6.0",
"symfony/form": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/string": "^6.0",
"symfony/translation": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/uid": "^6.0",
"symfony/validator": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"behat/behat": "^3.8",
"behat/mink-extension": "^2.3",
"friendsofphp/php-cs-fixer": "^3.0",
"nyholm/symfony-bundle-test": "^1.7",
"php-parallel-lint/php-var-dump-check": "^0.5",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"robertfausk/behat-panther-extension": "^1.0",
"sensio/framework-extra-bundle": "^6.1",
"symfony/phpunit-bridge": "^6.0"
},
"autoload": {
"psr-4": {
"JK\\MediaBundle\\": "src/"
},
"exclude-from-classmap": [
"/tests",
"/Tests"
]
},
"autoload-dev": {
"psr-4": {
"JK\\MediaBundle\\Tests\\": "tests/phpunit/"
}
},
"config": {
"bin-dir": "bin",
"component-dir": "components",
"sort-packages": true
}
}