-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.05 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "omasn/object-handler",
"description": "The component allows filling objects from an associative array based on class strict property maps",
"keywords": [
"php",
"handler",
"dto",
"object"
],
"homepage": "https://github.com/Fuck4ik/object-handler",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Roman Yastrebov",
"email": "tirastwo@gmail.com"
}
],
"require": {
"php": ">=7.4",
"symfony/validator": "^4.4|^5.4|^6.2",
"symfony/property-info": "^4.4|^5.4|^6.2",
"symfony/property-access": "^4.4|^5.4|^6.2",
"symfony/polyfill-php80": "^1.25"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.5|^10.0",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"symfony/var-dumper": "^4.4|^5.4|^6.2"
},
"autoload": {
"psr-4": {
"Omasn\\ObjectHandler\\": "src"
},
"exclude-from-classmap": [
"src/Tests/"
]
}
}