Last active
March 5, 2019 12:44
-
-
Save DavidBruchmann/36ebb1947a6c42f0a7efc85080737169 to your computer and use it in GitHub Desktop.
composer-snippet for scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts":{ | |
"command": [ | |
"echo \"EVENT: command\\n\"", | |
"VENDOR\\build\\command::myClassMethod" | |
], | |
"pre-command-run": [ | |
"echo \"EVENT: pre-command-run\\n\"", | |
"VENDOR\\build\\preCommandRun::myClassMethod" | |
], | |
"pre-install-cmd": "echo \"pre-install-cmd\\n\"", | |
"pre-update-cmd": [ | |
"echo \"pre-update-cmd\\n\"" | |
], | |
"pre-package-install": [ | |
"echo \"pre-package-install\\n\"" | |
], | |
"pre-package-update": [ | |
"echo \"pre-package-update\\n\"" | |
], | |
"pre-package-uninstall": [ | |
"echo \"pre-package-uninstall\\n\"" | |
], | |
"pre-autoload-dump": [ | |
"echo \"pre-autoload-dump\"" | |
], | |
"typo3-cms-scripts": [ | |
"typo3cms install:fixfolderstructure", | |
"typo3cms install:generatepackagestates" | |
], | |
"post-autoload-dump": [ | |
"@typo3-cms-scripts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment