forked from laravel-doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.79 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
{
"name": "laravel-doctrine/orm",
"description": "A Doctrine ORM bridge for Laravel 5",
"license": "MIT",
"keywords": [
"doctrine",
"laravel",
"orm",
"odm",
"data mapper",
"database"
],
"authors": [
{
"name": "Patrick Brouwers",
"email": "[email protected]"
},
{
"name": "David Chang",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"doctrine/orm": "2.5.*",
"illuminate/auth": "5.1.*",
"illuminate/console": "5.1.*",
"illuminate/container": "5.1.*",
"illuminate/contracts": "5.1.*",
"illuminate/pagination": "5.1.*",
"illuminate/support": "5.1.*",
"illuminate/validation": "5.1.*",
"illuminate/view": "5.1.*",
"symfony/serializer": "^2.7",
"doctrine/mongodb-odm": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"barryvdh/laravel-debugbar": "~2.0",
"itsgoingd/clockwork": "~1.9",
"illuminate/log": "5.1.*"
},
"autoload": {
"psr-4": {
"LaravelDoctrine\\ODM\\": "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)."
}
}