-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.85 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.85 KB
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
{
"name": "imatic/controller-bundle",
"type": "symfony-bundle",
"description": "Bundle to write simple controllers",
"keywords": ["controller", "symfony"],
"homepage": "https://www.imatic.cz",
"license": "MIT",
"authors": [
{
"name": "Stepan Koci",
"email": "stepan.koci@imatic.cz"
},
{
"name": "Imatic Software s.r.o.",
"homepage": "https://www.imatic.cz"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-iconv": "*",
"imatic/data-bundle": "^5.0|^6.0",
"symfony/form": "^4.4 || ^5.4 || ^6.2",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.2",
"symfony/mime": "^4.4 || ^5.4 || ^6.2",
"symfony/translation": "^4.4 || ^5.4 || ^6.2",
"symfony/twig-bundle": "^4.4 || ^5.4 || ^6.2"
},
"require-dev": {
"ext-json": "*",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"doctrine/orm": "^2.7",
"friendsofphp/php-cs-fixer": "^3.11",
"imatic/testing": "^6.0.0",
"phpmd/phpmd": "^2.6",
"symfony/browser-kit": "^4.4 || ^5.4 || ^6.2",
"symfony/css-selector": "^4.4 || ^5.4 || ^6.2",
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.2",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.2",
"symfony/validator": "^4.4 || ^5.4 || ^6.2",
"symfony/web-profiler-bundle": "^4.4 || ^5.4 || ^6.2",
"symfony/yaml": "^4.4 || ^5.4 || ^6.2"
},
"suggest": {
"imatic/importexport-bundle": "Allows to use import and export apis"
},
"autoload": {
"psr-4": {
"Imatic\\Bundle\\ControllerBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}