Skip to content

Commit

Permalink
Recreate composer lock. move phar to the bin folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpeach committed Oct 6, 2021
1 parent 0dee382 commit 6ce1615
Show file tree
Hide file tree
Showing 5 changed files with 2,779 additions and 2,730 deletions.
15 changes: 15 additions & 0 deletions bin/composer-manuscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env php
<?php

if (file_exists(__DIR__.'/../../../autoload.php')) {
require __DIR__.'/../../../autoload.php';
} else {
require __DIR__.'/../vendor/autoload.php';
}

$app = new Symfony\Component\Console\Application('Manuscript', '4.0.3');
$app->add(new DavidPeach\Manuscript\Commands\ManuscriptInitCommand);
$app->add(new DavidPeach\Manuscript\Commands\ManuscriptPlayCommand);
$app->add(new DavidPeach\Manuscript\Commands\ManuscriptClearPlaygroundsCommand);

$app->run();
Binary file modified bin/manuscript
Binary file not shown.
Binary file removed build/manuscript
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"bin": [
"build/manuscript"
"bin/manuscript"
],
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 6ce1615

Please sign in to comment.