-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "bolt/project",
"type": "project",
"description": "Bolt 4 standard project skeleton",
"license": "MIT",
"require": {
"bobdenotter/configuration-notices": "^1.0",
"bolt/assets": "^4.1",
"bolt/core": "^4.1",
"bolt/themes": "^3.3",
"symfony/flex": "^1.6"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"auto-scripts": {
"cache:clear --no-warmup": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"bolt:copy-assets": "symfony-cmd"
},
"post-create-project-cmd": [
"php bin/post-create-project.php",
"php bin/console bolt:copy-themes"
],
"post-install-cmd": [
"@auto-scripts",
"php bin/console extensions:configure --with-config",
"php bin/console bolt:info"
],
"post-update-cmd": [
"@auto-scripts",
"php bin/console extensions:configure",
"php bin/console bolt:info"
]
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^5.1"
},
"public-dir": "public"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"drupol/composer-packages": true
}
}
}