forked from ScientaNL/DoctrineJsonFunctions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.02 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": "scienta/doctrine-json-functions",
"abandoned": false,
"type": "library",
"description": "A set of extensions to Doctrine 2 that add support for json query functions.",
"keywords": ["doctrine", "orm", "json", "dql", "database", "mysql", "postgres", "postgresql", "mariadb", "sqlite"],
"license": "MIT",
"authors": [
{
"name": "Doctrine Json Functions Contributors",
"homepage": "https://github.com/ScientaNL/DoctrineJsonFunctions/contributors"
}
],
"require": {
"php": "^7.1",
"ext-pdo": "*"
},
"require-dev": {
"doctrine/orm": "~2.6",
"doctrine/coding-standard": "^5.0",
"phpunit/phpunit": "^6.5"
},
"autoload": {
"psr-4": {
"Scienta\\DoctrineJsonFunctions\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Doctrine\\Tests\\": "tests/Doctrine/Tests",
"Scienta\\DoctrineJsonFunctions\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"suggest": {
"dunglas/doctrine-json-odm": "To serialize / deserialize objects as JSON documents."
}
}