-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
executable file
·33 lines (33 loc) · 1.01 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
{
"name": "phptek/jsontext",
"description": "JSON storage, querying and modification.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "json", "dbfield", "query", "multi", "multivalue", "multivaluefield", "text", "JSONPath", "Postgres"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Russell Michell",
"homepage": "http://theruss.com/",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"silverstripe/framework": "^4.0",
"peekmo/jsonpath": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"support": {
"issues": "https://github.com/phptek/silverstripe-jsontext/issues"
},
"suggest": {
"silverstripe/cms": "Use silverstripe/cms package if you want to write to JSON-backed DB fields via the CMS module's UI"
},
"extra": {
"installer-name": "jsontext"
},
"minimum-stability": "dev",
"prefer-stable": true
}