forked from dunglas/doctrine-json-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.42 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
{
"name": "dunglas/doctrine-json-odm",
"type": "library",
"description": "An object document mapper for Doctrine ORM using JSON types of modern RDBMS.",
"keywords": ["ORM", "ODM", "JSON", "database", "RDBMS", "PostgreSQL", "MySQL"],
"homepage": "https://dunglas.fr",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "https://dunglas.fr"
}
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.6.3",
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
"symfony/property-info": "^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^1.12.13 || ^2.2",
"doctrine/dbal": "^2.7 || ^3.3",
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"symfony/uid": "^5.4 || ^6.0 || ^7.0",
"symfony/validator": "^5.4 || ^6.0 || ^7.0"
},
"suggest": {
"symfony/framework-bundle": "To use the provided bundle.",
"scienta/doctrine-json-functions": "To add support for JSON functions in DQL."
},
"autoload": {
"psr-4": { "Dunglas\\DoctrineJsonOdm\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Dunglas\\DoctrineJsonOdm\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}