forked from michelsalib/BCCAutoMapperBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.13 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
{
"name": "retailcrm/auto-mapper-bundle",
"type": "symfony-bundle",
"description": "An object to object mapper bundle for Symfony",
"license": "MIT",
"keywords": ["mapper automapper"],
"homepage": "https://github.com/retailcrm/AutoMapperBundle",
"authors": [
{
"name": "RetailCRM",
"email": "[email protected]",
"homepage": "https://www.retailcrm.ru/"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^5.4||^6.0||^7.0",
"symfony/property-access": "^5.4||^6.0||^7.0",
"symfony/expression-language": "^5.4||^6.0||^7.0",
"doctrine/orm": "^2.0||^3.0",
"doctrine/common": "^2.0||^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"retailcrm/php-code-style": "^1.0",
"friendsofphp/php-cs-fixer": "^3.56",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Retailcrm\\AutoMapperBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Retailcrm\\AutoMapperBundle\\Tests\\": "tests"
}
}
}