Skip to content

Commit

Permalink
Merge branch '7.x' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Oct 24, 2023
2 parents 2fa4e87 + 7a4f522 commit b4a308b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Illuminate\Support\Collection::make([
$files->copy("{$workingPath}/core/testbench.yaml", "{$workingPath}/testbench.yaml");

Illuminate\Support\Collection::make([
...$files->glob("{$workingPath}/core/workbench/config/*"),
...$files->glob("{$workingPath}/core/workbench/lang/en/*"),
...$files->glob("{$workingPath}/core/workbench/routes/*"),
...$files->glob("{$workingPath}/core/workbench/resources/views/components/*"),
...$files->glob("{$workingPath}/core/workbench/resources/views/*"),
Expand Down
7 changes: 7 additions & 0 deletions workbench/config/workbench.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

use Composer\InstalledVersions;

return [
'installed' => InstalledVersions::isInstalled('orchestra/workbench'),
];
5 changes: 5 additions & 0 deletions workbench/lang/en/welcome.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'morning' => 'Good Morning',
];

0 comments on commit b4a308b

Please sign in to comment.