Skip to content

Commit

Permalink
Clean project
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptiste committed Mar 29, 2024
1 parent 39849f1 commit e177c42
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `filament-jobs-monitor` will be documented in this file.

## 2.3.0 - 2024-03-26

https://github.com/croustibat/filament-jobs-monitor/releases/tag/2.3.0

## 2.2.0 - 2024-02-15

https://github.com/croustibat/filament-jobs-monitor/releases/tag/2.2.0

## 2.1.0 - 2023-12-08

https://github.com/croustibat/filament-jobs-monitor/releases/tag/2.1.0

## 2.0.0 - 2023-08-09

- Add support for Filament v3
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) croustibat <baptiste@derniercri.io>
Copyright (c) croustibat <baptiste@dark-matter.fr>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"authors": [
{
"name": "Baptiste",
"email": "baptiste@derniercri.io",
"email": "baptiste@dark-matter.fr",
"role": "Developer"
}
],
Expand Down
2 changes: 1 addition & 1 deletion src/FilamentJobsMonitorPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public function pluralLabel(string $pluralLabel): static
}

/**
* Get the resource cluster.
* Get the resource cluster name.
*/
public function getClusterName(): ?string
{
Expand Down
4 changes: 3 additions & 1 deletion src/FilamentJobsMonitorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@

class FilamentJobsMonitorServiceProvider extends PackageServiceProvider
{
public static string $name = 'filament-jobs-monitor';

public function configurePackage(Package $package): void
{
$package->name('filament-jobs-monitor')
$package->name(static::$name)
->hasConfigFile()
->hasTranslations()
->hasMigration('create_filament-jobs-monitor_table');
Expand Down

0 comments on commit e177c42

Please sign in to comment.