-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
36 lines (36 loc) · 1.04 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
{
"name": "oro/doctrine-extensions",
"type": "library",
"description": "Doctrine Extensions for MySQL and PostgreSQL.",
"homepage": "https://github.com/oroinc/doctrine-extensions/",
"keywords": ["database", "mysql", "postgresql", "dql", "function", "doctrine", "type"],
"license": "MIT",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com/"
}
],
"require": {
"php": ">=8.1",
"doctrine/lexer": "^2.0|^3.0",
"doctrine/orm": "^2.19|^3.0",
"doctrine/dbal": "^3.3|^4.0"
},
"require-dev": {
"phpunit/phpunit": "~10",
"doctrine/data-fixtures": "^1.6",
"symfony/yaml": "^5|^6|^7",
"symfony/cache": "^5|^6|^7",
"squizlabs/php_codesniffer": "3.9.*",
"doctrine/annotations": "^1.14|^2.0"
},
"autoload": {
"psr-4": {
"Oro\\DBAL\\": "src/Oro/DBAL",
"Oro\\ORM\\": "src/Oro/ORM"
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}