-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 795 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 795 Bytes
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
{
"name": "fabianofa/jsonboperators-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle of Doctrine custom functions that allows the developer to use ->, ->> and #>> operators in DQL",
"keywords": ["doctrine", "jsonb", "function", "operator", "bundle", "symfony", "fabianofa"],
"homepage": "https://github.com/fabianofa/JsonbBundle",
"license": "MIT",
"authors": [
{
"name": "Fabiano Araujo",
"homepage": "http://fabianofa.github.io/index.html"
}
],
"require": {
"php": ">=7.0",
"symfony/framework-bundle": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.4"
},
"autoload": {
"psr-4": {
"fabianofa\\JsonbOperatorsBundle\\": ""
}
}
}