-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 846 Bytes
/
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": "andrewandante/silverstripe-theme-picker",
"type": "silverstripe-vendormodule",
"description": "Adds a theme dropdown to SiteConfig.",
"homepage": "https://github.com/andrewandante/silverstripe-theme-picker",
"keywords": ["theme","silverstripe","picker","switch","admin"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Aitken-Fincham",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.silverstripe.com"
}
],
"require": {
"php": ">=5.6.0",
"silverstripe/framework": "^4",
"silverstripe/siteconfig": "^4"
},
"autoload": {
"psr-4": {
"AndrewAndante\\ThemePicker\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}