-
Notifications
You must be signed in to change notification settings - Fork 179
/
composer.json
119 lines (119 loc) · 4.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "laravel-doctrine/orm",
"description": "An integration library for Laravel and Doctrine ORM",
"license": "MIT",
"keywords": [
"laravel",
"doctrine",
"orm"
],
"authors": [
{
"name": "Patrick Brouwers",
"email": "[email protected]"
},
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.0 || ^4.0",
"doctrine/orm": "^3.1",
"doctrine/persistence": "^3.3",
"illuminate/auth": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/pagination": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/validation": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0",
"symfony/cache": "^6.0|^7.0",
"symfony/serializer": "^5.0|^6.0|^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"illuminate/log": "^10.0 || ^11.0",
"illuminate/notifications": "^10.0 || ^11.0",
"illuminate/queue": "^10.0 || ^11.0",
"mockery/mockery": "^1.6.12",
"nikic/php-parser": "^4.19 || ^5.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^11.4",
"fakerphp/faker": "^1.23",
"laravel/framework": "^10.0 || ^11.0",
"orchestra/testbench": "^9.5"
},
"conflict": {
"laravel/lumen": "*"
},
"autoload": {
"psr-4": {
"LaravelDoctrine\\ORM\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"LaravelDoctrineTest\\ORM\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"suggest": {
"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
}
},
"scripts": {
"test": [
"vendor/bin/parallel-lint src tests",
"vendor/bin/phpcs",
"vendor/bin/phpunit",
"vendor/bin/phpstan analyze src --level 1"
],
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"@php vendor/bin/phpstan analyse --verbose --ansi"
]
}
}