-
Notifications
You must be signed in to change notification settings - Fork 178
/
composer.json
87 lines (87 loc) · 2.9 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
80
81
82
83
84
85
86
87
{
"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": "^8.1",
"doctrine/cache": "^2.2",
"doctrine/dbal": "^4.1",
"doctrine/orm": "^3.1",
"doctrine/persistence": "^3.3",
"illuminate/auth": "^9.0|^10.0|^11.0",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/container": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/pagination": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/validation": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0",
"symfony/cache": "^6.0|^7.0",
"symfony/serializer": "^5.0|^6.0|^7.0"
},
"conflict": {
"laravel/lumen": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.3.1",
"illuminate/log": "^9.0|^10.0|^11.0",
"illuminate/notifications": "^9.0|^10.0|^11.0",
"illuminate/queue": "^9.0|^10.0|^11.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"doctrine/coding-standard": "^12.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"
}
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}