Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Create a console executable to run commands
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgaal authored and nesk committed Nov 30, 2020
1 parent 7542e9c commit 121e0b7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env php
<?php

require_once __DIR__.'/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use Nesk\Puphpeteer\Command\GenerateDocumentationCommand;

(new Application())
->add(new GenerateDocumentationCommand)
->getApplication()
->run();

0 comments on commit 121e0b7

Please sign in to comment.