-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.71 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
{
"name": "rekalogika/reconstitutor",
"description": "A thin layer above Doctrine events to help you reconstitute/hydrate your entities. The most common example being handling file uploads, but also many other purposes. It lets you augment Doctrine's hydration with your logic in a concise and expressive class.",
"homepage": "https://rekalogika.dev/reconstitutor",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Rekalogika\\Reconstitutor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rekalogika\\Reconstitutor\\Tests\\": "tests/src/"
}
},
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"doctrine/orm": "^2.16 || ^3.0",
"rekalogika/direct-property-access": "^1.1.2 || ^1.2",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.1 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0"
},
"require-dev": {
"doctrine/collections": "^2.2",
"doctrine/doctrine-bundle": "^2.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19.0",
"psalm/plugin-symfony": "^5.0",
"rector/rector": "^2.0",
"symfony/debug-bundle": "^6.0 || ^7.0",
"symfony/doctrine-bridge": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"symfony/uid": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0",
"vimeo/psalm": "^6.0"
},
"config": {
"sort-packages": true
}
}