This repository was archived by the owner on Dec 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.61 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
{
"name": "jane-php/automapper",
"type": "library",
"description": "Jane AutoMapper Component",
"keywords": [],
"homepage": "https://github.com/janephp/janephp",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
},
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"doctrine/inflector": "^1.4 || ^2.0",
"nikic/php-parser": "^4.0",
"symfony/property-info": "^5.3 || ^6.0",
"symfony/serializer": "^5.1 || ^6.0"
},
"require-dev": {
"doctrine/annotations": "~1.0",
"moneyphp/money": "^3.0",
"phpdocumentor/reflection-docblock": "^3.0 || ^4.0 || ^5.0",
"phpunit/phpunit": "^8.0",
"symfony/uid": "^5.2 || ^6.0"
},
"suggest": {
"doctrine/annotations": "Docblock Annotations Parser",
"phpdocumentor/reflection-docblock": "Allow to extract informations from PHP Doc blocks"
},
"conflict": {
"symfony/serializer": "<4.2",
"symfony/property-info": "5.1.6 || 5.1.7",
"nikic/php-parser": "<4.0.4"
},
"extra": {
"branch-alias": {
"dev-next": "7-dev"
}
},
"autoload": {
"psr-4": {
"Jane\\Component\\AutoMapper\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}