-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
It seems that lack the section post-install-cmd
/post-update-cmd
under scripts
in composer.json
Now:
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
}
}
Referring to symfony/website-skeleton
it shold be:
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
Or they were supposed to be started manually via composer run-script auto-scripts
?
Metadata
Metadata
Assignees
Labels
No labels