Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move SEAL to CMS-IG namespace (BC Break) #458

Merged
merged 3 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move more things from seal to cmsig:seal update some missing parts
  • Loading branch information
alexander-schranz committed Nov 16, 2024
commit b97c512819e875aa18cbd4f81fa8e13cb3904464
2 changes: 1 addition & 1 deletion .examples/laravel/app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public function boot(): void
{
$this->app->singleton(BlogReindexProvider::class, fn () => new BlogReindexProvider());

$this->app->tag(BlogReindexProvider::class, 'seal.reindex_provider');
$this->app->tag(BlogReindexProvider::class, 'cmsig_seal.reindex_provider');
}
}
133 changes: 65 additions & 68 deletions .examples/laravel/composer.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@

/*
|--------------------------------------------------------------------------
| engines
| Engines
|--------------------------------------------------------------------------
|
| Directory where the latte templates can be found.
| Define different engines for the indexes.
*/

'engines' => [
Expand Down
14 changes: 7 additions & 7 deletions .examples/laravel/tests/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
declare(strict_types=1);

it('test create', function () {
$this->artisan('seal:index-create')
->assertExitCode(0);
});

it('test drop', function () {
$this->artisan('seal:index-drop --force')
$this->artisan('cmsig:seal:index-create')
->assertExitCode(0);
});

it('test reindex', function () {
$this->artisan('seal:reindex --drop')
$this->artisan('cmsig:seal:reindex --drop')
->assertExitCode(0)
->expectsOutputToContain('3/3');
});

it('test drop', function () {
$this->artisan('cmsig:seal:index-drop --force')
->assertExitCode(0);
});
104 changes: 51 additions & 53 deletions .examples/mezzio/composer.lock

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

Loading
Loading