forked from laravel-doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.58 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
{
"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": "patrick@maatwebsite.nl"
}
],
"require": {
"php": "^8.0",
"doctrine/annotations": "^1.13",
"doctrine/cache": "^1",
"doctrine/dbal": "^2.13.3",
"doctrine/orm": "^2.11",
"doctrine/persistence": "^1.3.5|^2.0",
"illuminate/auth": "^9.0",
"illuminate/console": "^9.0",
"illuminate/container": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/pagination": "^9.0",
"illuminate/routing": "^9.0",
"illuminate/support": "^9.0",
"illuminate/validation": "^9.0",
"illuminate/view": "^9.0",
"symfony/serializer": "^5.0|^6.0",
"symfony/yaml": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.3.1",
"barryvdh/laravel-debugbar": "~3.0",
"itsgoingd/clockwork": "^5.0",
"illuminate/log": "^9.0",
"illuminate/notifications": "^9.0",
"illuminate/queue": "^9.0"
},
"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"
}
}
}
}