-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 845 Bytes
/
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
{
"name": "osavmic/doctrine-orm-dangerous-edge-cases",
"description": "Dangerous doctrine edge-cases you should know about",
"require": {
"ext-pdo": "*",
"php": ">=8.1",
"doctrine/orm": "2.*",
"doctrine/cache": "2.*",
"doctrine/annotations": "1.13.*",
"symfony/cache": "6.1.*"
},
"require-dev": {
"doctrine/data-fixtures": "1.5.*",
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/src/"
}
},
"scripts": {
"prepare-database": [
"doctrine orm:schema-tool:drop --force",
"doctrine orm:schema-tool:create"
],
"tests": [
"phpunit tests/"
]
}
}