-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.01 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "kerrialn/static-data-importer-bundle",
"type": "symfony-bundle",
"description": "generates entity objects from json, xml, csv files and persists to the database",
"license": "MIT",
"bin": [
"bin/sdi"
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"symfony/console": "6.1.*",
"symfony/finder": "6.1.*",
"symfony/flex": "^2",
"symfony/property-access": "6.1.*",
"symfony/proxy-manager-bridge": "6.1.*",
"symfony/runtime": "^6.1",
"symfony/serializer": "6.1.*",
"symfony/yaml": "6.1.*",
"symplify/smart-file-system": "^10",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.13"
},
"autoload": {
"psr-4": {
"Kerrialn\\Bundle\\StaticDataImporterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kerrialn\\Bundle\\StaticDataImporterBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
}
}