Skip to content

Commit

Permalink
Issue #13 - Downgrade symfony console
Browse files Browse the repository at this point in the history
  • Loading branch information
byjg committed Oct 25, 2021
1 parent 228a615 commit 7d82153
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": ">=7.2",
"byjg/migration": "4.2.*",
"symfony/console": "^5.4"
"symfony/console": "^5.3"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected function configure()
{
$this
->setName('create')
->setDescription('Create the directory structure FROM a pre-existing database')
->setDescription('Create the directory structure necessary to create the migration')
->addArgument(
'path',
InputArgument::REQUIRED,
Expand All @@ -28,8 +28,8 @@ protected function configure()
)
->addUsage('')
->addUsage('Example: ')
->addUsage(' migrate create --path /path/to/structure')
->addUsage(' migrate create --path /path/to/structure --migration ')
->addUsage(' migrate create /path/to/structure')
->addUsage(' migrate create --migration /path/to/structure')
;
}

Expand Down

0 comments on commit 7d82153

Please sign in to comment.