composer.pharをupdateすると当然autoload.phpも上書きされて、自動的にautoloadされますので、staticメソッドを呼び出せます。Templateコントローラーのafterで、出力されるhtmlをminifyしてやりましょう。 public function after($response) { $response = parent::after($response); $response->body(zz\Html\HTMLMinify::minify($response->body(), array( 'doctype' => 'html5', 'optimizationLevel' => 1 ))); return $response; }