-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.16 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
{
"name": "rekalogika/file-association",
"description": "Handles the association between Doctrine entities and files using the rekalogika/file framework, including from file uploads.",
"homepage": "https://rekalogika.dev/file-bundle",
"type": "library",
"license": "MIT",
"keywords": [
"file",
"association",
"upload",
"entity",
"attachment",
"doctrine",
"file upload",
"symfony"
],
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "priyadi@rekalogika.com"
}
],
"autoload": {
"psr-4": {
"Rekalogika\\File\\Association\\": "src/"
}
},
"require": {
"rekalogika/direct-property-access": "^1.1.2 || ^1.2",
"rekalogika/file-association-contracts": "^1.12",
"rekalogika/file-contracts": "^1.12",
"rekalogika/reconstitutor": "^1.3.2 || ^1.4",
"symfony/property-access": "^6.2 || ^7.0"
},
"suggest": {
"symfony/console": "Enables console commands"
},
"extra": {
"branch-alias": {
"dev-main": "1.13-dev"
}
}
}