diff --git a/makephar b/makephar deleted file mode 100755 index f3ebc9c..0000000 Binary files a/makephar and /dev/null differ diff --git a/makephar.conf b/makephar.conf deleted file mode 100644 index d34357e..0000000 --- a/makephar.conf +++ /dev/null @@ -1,13 +0,0 @@ -{ - "output": "hotfix", - "include": [ - "bin", - "src", - "vendor" - ], - "stub": "bin/bootstrap.php", - "options": { - "chmod": "0777" - }, - "compress": 3 -} diff --git a/src/Command/ApplyCommand.php b/src/Command/ApplyCommand.php index 6e1933f..48dd3d8 100644 --- a/src/Command/ApplyCommand.php +++ b/src/Command/ApplyCommand.php @@ -57,7 +57,7 @@ class ApplyCommand extends Command $header = $hotfix->getHeader(); $output->writeln(" Hotfix: ".$header->getName().""); $output->writeln(" Author: ".$header->getAuthor().""); - $info = explode("\n",wordwrap(trim($header->getInfo()), 60)); + $info = explode("\n",wordwrap(trim($header->getInfo()), 80)); $info = "".join("\n ", $info).""; $output->writeln(" Info: ".$info); $output->writeln("");