-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.58 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "imatic/data-bundle",
"type": "symfony-bundle",
"description": "Bundle to work with data",
"keywords": ["data", "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-json": "*",
"doctrine/dbal": "^3.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.2"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.0",
"doctrine/orm": "^2.15",
"friendsofphp/php-cs-fixer": "^3.2.1",
"imatic/form-bundle": "^5.0.0",
"imatic/testing": "^6.0.0",
"mikey179/vfsstream": "^1.4",
"phpstan/phpstan": "^1.8",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.2",
"symfony/phpunit-bridge": "^4.4 || ^5.0 || ^6.2",
"symfony/security-bundle": "^4.4 || ^5.0 || ^6.2",
"symfony/yaml": "^4.4 || ^5.0 || ^6.2"
},
"suggest": {
"doctrine/dbal": "*",
"doctrine/orm": "*"
},
"autoload": {
"psr-4": {
"Imatic\\Bundle\\DataBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Imatic\\Bundle\\DataBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}