1 | <?php |
||
7 | class ComposerScripts |
||
8 | { |
||
9 | /** |
||
10 | * Handle the post-install Composer event. |
||
11 | * |
||
12 | * @param \Composer\Script\Event $event |
||
13 | * @return void |
||
14 | */ |
||
15 | public static function postInstall(Event $event) |
||
19 | |||
20 | /** |
||
21 | * Handle the post-update Composer event. |
||
22 | * |
||
23 | * @param \Composer\Script\Event $event |
||
24 | * @return void |
||
25 | */ |
||
26 | public static function postUpdate(Event $event) |
||
30 | |||
31 | /** |
||
32 | * Handle the post-autoload-dump Composer event. |
||
33 | * |
||
34 | * @param \Composer\Script\Event $event |
||
35 | * @return void |
||
36 | */ |
||
37 | public static function postAutoloadDump(Event $event) |
||
45 | } |
||
46 |