-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
32 lines (32 loc) · 954 Bytes
/
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
{
"name": "mark-gerarts/automapper-plus-bundle",
"description": "A Symfony bundle for AutoMapper+",
"type": "symfony-bundle",
"keywords": ["AutoMapper", "Bundle"],
"license": "MIT",
"authors": [
{
"name": "Mark Gerarts",
"email": "mark.gerarts@gmail.com"
}
],
"autoload": {
"psr-4": {
"AutoMapperPlus\\AutoMapperPlusBundle\\": [""]
}
},
"require": {
"php": ">=7.1.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0|^6.0|^7.0",
"mark-gerarts/auto-mapper-plus": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0|^9.0|^10.0",
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"symfony/property-access": "^3.4|^4.4|^5.0|^6.0|^7.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.1|^4.1"
},
"suggest": {
"symfony/property-access": "^3.4|^4.4|^5.4|^6.0|^7.0"
}
}