-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.17 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "gryfoss/mvc-vm-normalizer",
"description": "Symfony MVC View Model Normalizer - provides DefaultViewModel attribute and normalizer for intermediate layer between data models and view serialization",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"GryfOSS\\Mvc\\": "src/"
}
},
"authors": [
{
"name": "IDCT Bartosz Pachołek",
"email": "bartosz+github@idct.tech"
}
],
"minimum-stability": "stable",
"require": {
"symfony/serializer": "^6 || ^7",
"symfony/event-dispatcher": "^6 || ^7",
"symfony/http-kernel": "^6 || ^7",
"doctrine/common": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/property-access": "^6 || ^7",
"symfony/property-info": "^6 || ^7",
"behat/behat": "^3.14",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload-dev": {
"psr-4": {
"GryfOSS\\Mvc\\Tests\\": "tests/",
"GryfOSS\\Mvc\\Tests\\Behat\\": "features/bootstrap/",
"GryfOSS\\Mvc\\Tests\\Behat\\Fixtures\\": "features/fixtures/"
}
}
}