Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Update package name and URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexian-droid committed Mar 10, 2024
1 parent 80ab6eb commit 08d03fd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Display MOTD messages to your users.

[![Latest Version on Packagist](https://img.shields.io/packagist/v/ledxiandev/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/ledxiandev/laravel-motd)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/ledxiandev/laravel-motd/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/ledxiandev/laravel-motd/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/ledxiandev/laravel-motd/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/ledxiandev/laravel-motd/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/ledxiandev/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/ledxiandev/laravel-motd)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/lexiandev/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/lexiandev/laravel-motd)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/lexiandev/laravel-motd/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/lexiandev/laravel-motd/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/lexiandev/laravel-motd/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/lexiandev/laravel-motd/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/lexiandev/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/lexiandev/laravel-motd)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Expand All @@ -20,7 +20,7 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh
You can install the package via composer:

```bash
composer require ledxiandev/laravel-motd
composer require lexiandev/laravel-motd
```

You can publish and run the migrations with:
Expand Down Expand Up @@ -76,7 +76,7 @@ Please review [our security policy](../../security/policy) on how to report secu

## Credits

- [Lexian-droid](https://github.com/ledxiandev)
- [Lexian-droid](https://github.com/lexiandev)
- [All Contributors](../../contributors)

## License
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "ledxiandev/laravel-motd",
"name": "lexiandev/laravel-motd",
"description": "Display MOTD messages to your users.",
"keywords": [
"lexiandev",
"laravel",
"laravel-motd"
],
"homepage": "https://github.com/ledxiandev/laravel-motd",
"homepage": "https://github.com/lexiandev/laravel-motd",
"license": "MIT",
"authors": [
{
Expand Down
4 changes: 3 additions & 1 deletion database/migrations/create_motd_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ return new class extends Migration
Schema::create('laravel_motd_table', function (Blueprint $table) {
$table->id();

// add fields
$table->string('message');
$table->timestamp('start_date');
$table->timestamp('end_date');

$table->timestamps();
});
Expand Down

0 comments on commit 08d03fd

Please sign in to comment.