-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 1.06 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
37
38
{
"name": "bolt/composer-install",
"description": "Sophisticated, lightweight & simple CMS",
"type": "project",
"license": "MIT",
"require": {
"php": "^5.5.9 || ^7.0",
"bolt/bolt": "^3.5",
"passwordlib/passwordlib": "^1.0@beta"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"Bolt\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Bolt\\Composer\\ScriptHandler::updateProject",
"Bolt\\Composer\\ScriptHandler::installAssets"
],
"post-create-project-cmd": [
"Bolt\\Composer\\ScriptHandler::configureProject",
"Bolt\\Composer\\ScriptHandler::installThemesAndFiles",
"nut extensions:setup"
]
},
"extra": {
"branch-alias": {
"dev-release/3.3": "3.3.x-dev"
}
},
"repositories": {
"packagist.org": {
"type": "composer",
"url": "https://repo-eu-uk-1.packagist.org"
}
}
}