forked from dunglas/doctrine-json-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.18 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
{
"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": "^5.5.9 || ^7.0",
"doctrine/orm": "^2.5",
"symfony/property-access": "^2.8 || ^3.0 || ^4.0",
"symfony/property-info": "^2.8 || ^3.0 || ^4.0",
"symfony/serializer": "^2.8 || ^3.0 || ^4.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.6",
"symfony/finder": "^2.8 || ^3.0 || ^4.0",
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
"symfony/phpunit-bridge": "^3.3 || ^4.0"
},
"suggest": {
"symfony/framework-bundle": "To use the provided bundle."
},
"autoload": {
"psr-4": { "Dunglas\\DoctrineJsonOdm\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Dunglas\\DoctrineJsonOdm\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}