-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
80 lines (80 loc) · 2.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "jolicode/automapper",
"type": "library",
"description": "JoliCode AutoMapper",
"keywords": [],
"homepage": "https://github.com/jolicode/automapper",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
},
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"nikic/php-parser": "^4.18 || ^5.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/lock": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"phpdocumentor/type-resolver": "^1.7"
},
"require-dev": {
"api-platform/core": "^3.0.4",
"doctrine/annotations": "~1.0",
"doctrine/inflector": "^2.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"moneyphp/money": "^3.3.2",
"phpunit/phpunit": "^9.0",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/framework-bundle": "*",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/serializer": "*",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/uid": "^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"willdurand/negotiation": "^3.0"
},
"suggest": {
"symfony/serializer": "Allow to use symfony serializer attributes in mapping"
},
"conflict": {
"api-platform/core": "<3",
"symfony/framework-bundle": "<6.4",
"symfony/serializer": "<6.4"
},
"autoload": {
"psr-4": {
"AutoMapper\\": "src/"
},
"files": [
"src/php-parser.php"
]
},
"autoload-dev": {
"psr-4": {
"AutoMapper\\Tests\\": "tests/"
},
"classmap": [
"tests/Bundle/Resources/App/AppKernel.php"
]
},
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}