-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert to a Symfony application. (#45)
* Add symfony/console * Pin version of mysql used in test database. * Convert diff into a Symfony console command * Convert dump into a Symfony console command * Fix return type annotation * Convert extract into a Symfony console command * Convert lint into a Symfony console command * Add console application * Remove old morphism scripts * Remove custom command line parsing code * Create directories with less permissive permissions
- Loading branch information
1 parent
42a542f
commit 6d81cd4
Showing
20 changed files
with
568 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
require __DIR__ . '/../vendor/autoload.php'; | ||
|
||
$console = new Symfony\Component\Console\Application(); | ||
|
||
$console->add(new Graze\Morphism\Command\Diff()); | ||
$console->add(new Graze\Morphism\Command\Fastdump()); | ||
$console->add(new Graze\Morphism\Command\Extract()); | ||
$console->add(new Graze\Morphism\Command\Lint()); | ||
|
||
$console->run(); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.