-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "pixelshaped/flat-mapper-bundle",
"description": "Object mapper for denormalized data. Transform flat arrays (like database JOIN results) into nested, typed DTOs without the overhead of a full ORM.",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Pixelshaped\\FlatMapperBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pixelshaped\\FlatMapperBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Pixelshaped",
"email": "renaud.grand@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"symfony/cache-contracts": "^2.5 || ^3.3",
"symfony/config": "^6.1 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.1 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.1 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^1.11"
}
}