forked from laravel-doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.41 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
{
"name": "laravel-doctrine/orm",
"description": "A Doctrine ORM bridge for Laravel 5",
"license": "MIT",
"keywords": [
"doctrine",
"laravel",
"orm",
"data mapper",
"database"
],
"authors": [
{
"name": "Patrick Brouwers",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"doctrine/orm": "2.5.*",
"illuminate/auth": "5.5.*",
"illuminate/console": "5.5.*",
"illuminate/container": "5.5.*",
"illuminate/contracts": "5.5.*",
"illuminate/pagination": "5.5.*",
"illuminate/routing": "5.5.*",
"illuminate/support": "5.5.*",
"illuminate/validation": "5.5.*",
"illuminate/view": "5.5.*",
"symfony/serializer": "^2.7|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "1.0.0-alpha1",
"barryvdh/laravel-debugbar": "~2.0",
"itsgoingd/clockwork": "~1.9",
"illuminate/log": "5.5.*",
"illuminate/notifications": "5.5.*",
"illuminate/queue": "5.5.*"
},
"autoload": {
"psr-4": {
"LaravelDoctrine\\ORM\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
]
},
"suggest": {
"laravel-doctrine/fluent": "Fluent mapping driver (alternative to xml, yaml, ... (~1.1).",
"fzaninotto/faker": "Required to use the entity factory builder (~1.4).",
"laravel-doctrine/acl": "to integrate Doctrine roles & permissions with Laravel's Authorization system (~1.0)",
"laravel-doctrine/extensions": "to add Behavioral and Query/Type Extensions for Laravel Doctrine (~1.0)",
"laravel-doctrine/migrations": "to add support for migrations in Laravel Doctrine (~1.0)",
"yajra/laravel-oci8": "Support for Laravel native queue and session database drivers in Oracle (~2.0)."
},
"extra": {
"laravel": {
"providers": [
"LaravelDoctrine\\ORM\\DoctrineServiceProvider"
],
"aliases": {
"Registry": "LaravelDoctrine\\ORM\\Facades\\Registry",
"Doctrine": "LaravelDoctrine\\ORM\\Facades\\Doctrine",
"EntityManager": "LaravelDoctrine\\ORM\\Facades\\EntityManager"
}
}
}
}