We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f77c74c + ac97504 commit 1d89961Copy full SHA for 1d89961
src/app/Console/Commands/Version.php
@@ -36,9 +36,12 @@ public function handle()
36
$this->line(\PackageVersions\Versions::getVersion('laravel/framework'));
37
$this->line('');
38
39
- $this->comment('### BACKPACK VERSION:');
40
- $this->line(\PackageVersions\Versions::getVersion('backpack/crud'));
41
- $this->line('');
+ $this->comment('### BACKPACK PACKAGE VERSIONS:');
+ foreach (\PackageVersions\Versions::VERSIONS as $package => $version) {
+ if (substr($package, 0, 9) == 'backpack/') {
42
+ $this->line($package.': '.strtok($version, '@'));
43
+ }
44
45
}
46
47
/**
0 commit comments