Skip to content

Commit

Permalink
chore: release v3.0.0-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
regnerisch committed Aug 2, 2022
1 parent eac6986 commit 8f75d18
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


# [3.0.0-beta.8](https://github.com/regnerisch/laravel-beyond/compare/v3.0.0-beta.7...v3.0.0-beta.8) (2022-08-02)


### Bug Fixes

* fix small bugs & optimize code ([700ab3d](https://github.com/regnerisch/laravel-beyond/commit/700ab3d43c3c431874583d198316773b46758f96))

# [3.0.0-beta.7](https://github.com/regnerisch/laravel-beyond/compare/v3.0.0-beta.6...v3.0.0-beta.7) (2022-07-21)


Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "regnerisch/laravel-beyond",
"type": "library",
"license": "ISC",
"version": "3.0.0-beta.7",
"version": "3.0.0-beta.8",
"autoload": {
"psr-4": {
"Regnerisch\\LaravelBeyond\\": "src/"
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/LaravelBeyondServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Illuminate\Support\ServiceProvider;
use Regnerisch\LaravelBeyond\Commands\MakeActionCommand;
use Regnerisch\LaravelBeyond\Commands\MakeBuilderCommand;
use Regnerisch\LaravelBeyond\Commands\MakeCollectionCommand;
use Regnerisch\LaravelBeyond\Commands\MakeCommand;
use Regnerisch\LaravelBeyond\Commands\MakeCommandCommand;
Expand All @@ -16,7 +17,6 @@
use Regnerisch\LaravelBeyond\Commands\MakeMiddlewareCommand;
use Regnerisch\LaravelBeyond\Commands\MakeModelCommand;
use Regnerisch\LaravelBeyond\Commands\MakePolicyCommand;
use Regnerisch\LaravelBeyond\Commands\MakeBuilderCommand;
use Regnerisch\LaravelBeyond\Commands\MakeQueryCommand;
use Regnerisch\LaravelBeyond\Commands\MakeRequestCommand;
use Regnerisch\LaravelBeyond\Commands\MakeResourceCommand;
Expand Down
1 change: 0 additions & 1 deletion src/Resolvers/AppNameSchemaResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Regnerisch\LaravelBeyond\Resolvers;

use Illuminate\Console\Command;
use Regnerisch\LaravelBeyond\Actions\FetchDirectoryNamesFromfetchDirectoryNamesFromPathActionAction;
use Regnerisch\LaravelBeyond\Contracts\Schema;
use Regnerisch\LaravelBeyond\Schema\AppSchema;
use Regnerisch\LaravelBeyond\Schema\SupportSchema;
Expand Down
2 changes: 1 addition & 1 deletion src/Schema/DomainSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class DomainSchema extends BaseSchema
public function path(?string $directory = null): string
{
$directory = trim($directory, '/');

return sprintf(
'%s/src/Domain/%s%s/%s.php',
base_path(),
Expand Down

0 comments on commit 8f75d18

Please sign in to comment.