Skip to content

Commit 83ac71d

Browse files
tabacitupxpm
andauthored
Apply suggestions from code review
Co-authored-by: Pedro Martins <[email protected]>
1 parent d2efac4 commit 83ac71d

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

src/app/Console/Commands/Upgrade/Concerns/InteractsWithCrudControllers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
trait InteractsWithCrudControllers
1111
{
1212
/**
13-
* Filter a list of file paths to those that look like CrudControllers and optionally validate contents.
13+
* Filter a list of file paths.
1414
*/
1515
protected function filterCrudControllerPaths(array $paths, ?callable $contentsValidator = null): array
1616
{

src/app/Console/Commands/Upgrade/v6/UpgradeCommandConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function upgradeCommandDescription(): ?callable
2828
);
2929

3030
$command->note(
31-
'You can choose <fg=magenta>v7</> option bellow, or call it later with: <fg=magenta>backpack:upgrade --version=7</>.',
31+
'Please select the upgrade path you wish to follow:',
3232
'yellow',
3333
'yellow'
3434
);

src/app/Console/Commands/Upgrade/v7/UpgradeCommandConfig.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -33,28 +33,28 @@ public function addons(): array
3333
'backpack/crud' => self::backpackCrudRequirement(),
3434
'backpack/filemanager' => 'dev-next',
3535
'backpack/theme-coreuiv2' => 'dev-next',
36-
'backpack/theme-coreuiv4' => 'dev-next',
36+
'backpack/theme-coreuiv4' => '^1.2',
3737
'backpack/theme-tabler' => 'dev-next',
38-
'backpack/logmanager' => 'dev-next',
39-
'backpack/settings' => 'dev-next',
40-
'backpack/newscrud' => 'dev-next',
41-
'backpack/permissionmanager' => 'dev-next',
42-
'backpack/pagemanager' => 'dev-next',
43-
'backpack/menucrud' => 'dev-next',
44-
'backpack/backupmanager' => 'dev-next',
45-
'backpack/editable-columns' => 'dev-next',
46-
'backpack/revise-operation' => 'dev-next',
47-
'backpack/medialibrary-uploaders' => 'dev-next',
48-
'backpack/devtools' => 'dev-next',
49-
'backpack/generators' => 'dev-next',
50-
'backpack/activity-log' => 'dev-next',
51-
'backpack/calendar-operation' => 'dev-next',
52-
'backpack/language-switcher' => 'dev-next',
53-
'backpack/pan-panel' => 'dev-next',
38+
'backpack/logmanager' => '^5.1',
39+
'backpack/settings' => '^3.2',
40+
'backpack/newscrud' => '^5.2',
41+
'backpack/permissionmanager' => '^7.3',
42+
'backpack/pagemanager' => '^3.4',
43+
'backpack/menucrud' => '^4.1',
44+
'backpack/backupmanager' => '^5.1',
45+
'backpack/editable-columns' => '^3.1',
46+
'backpack/revise-operation' => '^2.1',
47+
'backpack/medialibrary-uploaders' => '^2.0',
48+
'backpack/devtools' => '^4.0',
49+
'backpack/generators' => '^4.1',
50+
'backpack/activity-log' => '^2.1',
51+
'backpack/calendar-operation' => '^1.1',
52+
'backpack/language-switcher' => '^2.1',
53+
'backpack/pan-panel' => '^1.1',
5454
'backpack/pro' => '^3.0.0-alpha',
55-
'backpack/translation-manager' => 'dev-next',
56-
'backpack/ckeditor-field' => 'dev-next',
57-
'backpack/tinymce-field' => 'dev-next',
55+
'backpack/translation-manager' => '^1.1',
56+
'backpack/ckeditor-field' => '^1.0',
57+
'backpack/tinymce-field' => '^1.0',
5858
];
5959
}
6060

0 commit comments

Comments
 (0)