forked from silverstripe/silverstripe-taxonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 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
{
"name": "silverstripe/taxonomy",
"description": "Provide extra taxonomy for cataloguing the data.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"cwp"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Robert Curry",
"email": "robert@silverstripe.com"
}
],
"require": {
"silverstripe/framework": "^4",
"silverstripe/admin": "^1.0.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"symbiote/silverstripe-gridfieldextensions": "Allows sorting of TaxonomyTerm objects via drag-and-drop",
"undefinedoffset/sortablegridfield": "Allows sorting of TaxonomyTerm objects via drag-and-drop"
},
"autoload": {
"psr-4": {
"SilverStripe\\Taxonomy\\": "src/",
"SilverStripe\\Taxonomy\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}