-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.09 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
{
"name": "freezy-bee/doctrine-form-mapper",
"license": [
"MIT"
],
"type": "library",
"description": "Forms mapping of Doctrine ORM entities for Nette Framework",
"keywords": [
"nette",
"doctrine",
"forms",
"mapping"
],
"authors": [
{
"name": "Jakub Janata",
"email": "[email protected]"
}
],
"require": {
"php": "~7.4 || ^8.0",
"nette/di": "~2.4 || ^3.0",
"nette/forms": "~2.4 || ^3.0",
"doctrine/orm": "^2.18 || ^3.0",
"symfony/property-access": "~3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"latte/latte": "~2.5 || ^3.0",
"nette/application": "~2.4 || ^3.0",
"nette/bootstrap": "~2.4 || ^3.0",
"nette/tester": "~2.0",
"phpstan/phpstan": "^1.0",
"ramsey/uuid-doctrine": "^2.0",
"symplify/easy-coding-standard": "^12.0",
"tracy/tracy": "^2.5"
},
"autoload": {
"psr-4": {
"FreezyBee\\DoctrineFormMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FreezyBee\\DoctrineFormMapper\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}