forked from laravel-doctrine/fluent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.04 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
{
"name": "laravel-doctrine/fluent",
"description": "A fluent PHP mapping driver for Doctrine2.",
"license": "MIT",
"keywords": [
"doctrine",
"laravel",
"orm",
"data mapper",
"database",
"mappings",
"mapping driver",
"fluent"
],
"authors": [
{
"name": "Guido Contreras Woda",
"email": "[email protected]"
},
{
"name": "Patrick Brouwers",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"doctrine/dbal": "^2.10|^3.3",
"doctrine/orm": "^2.6",
"doctrine/inflector": "^1.4|^2.0",
"doctrine/persistence": "^1.3.5|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0",
"mockery/mockery": "~1.0",
"beberlei/doctrineextensions": "~1.0",
"zf1/zend-date": "~1.12",
"nesbot/carbon": "*",
"gedmo/doctrine-extensions": "^2.4|^3"
},
"autoload": {
"psr-4": {
"LaravelDoctrine\\Fluent\\": "src/",
"Gedmo\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}