| 1 | <?php |
||
| 8 | class Composer |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Post install composer commands. |
||
| 12 | */ |
||
| 13 | public static function postInstallCmd() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Post update composer commands. |
||
| 22 | */ |
||
| 23 | public static function postUpdateCmd() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Downloads composer. |
||
| 30 | */ |
||
| 31 | public static function download() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Updates composer. |
||
| 38 | */ |
||
| 39 | public static function update() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return bool |
||
| 46 | */ |
||
| 47 | public static function isInstalled() |
||
| 55 | } |
||
| 56 |