-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.09 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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
43
44
45
46
{
"name": "nzta/external-content-api",
"description": "Module for managing external content for NZTA API's",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"new zealand",
"nzta",
"api"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Charm Quarks",
"email": "charmquarks@silverstripe.com"
}
],
"require": {
"silverstripe/admin": "^3",
"silverstripe/htmleditor-tinymce": "^1.0",
"silverstripe/restfulserver": "4.x-dev",
"silverstripe/versioned": "^3",
"silverstripe/versioned-admin": "^3"
},
"require-dev": {
"phpunit/phpunit": "^11",
"squizlabs/php_codesniffer": "^3"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"NZTA\\ContentApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NZTA\\ContentApi\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}