diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 30d4eaf..8cf7cbb 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: lexian-droid +github: lexiandev diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5c24ec8..683927b 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: Ask a question - url: https://github.com/lexian-droid/laravel-motd/discussions/new?category=q-a + url: https://github.com/lexiandev/laravel-motd/discussions/new?category=q-a about: Ask the community for help - name: Request a feature - url: https://github.com/lexian-droid/laravel-motd/discussions/new?category=ideas + url: https://github.com/lexiandev/laravel-motd/discussions/new?category=ideas about: Share ideas for new features - name: Report a security issue - url: https://github.com/lexian-droid/laravel-motd/security/policy + url: https://github.com/lexiandev/laravel-motd/security/policy about: Learn how to notify us for sensitive bugs diff --git a/LICENSE.md b/LICENSE.md index f6576fd..af7fd3a 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) lexian-droid +Copyright (c) lexiandev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 2ea22ed..f4729d9 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Display MOTD messages to your users. -[![Latest Version on Packagist](https://img.shields.io/packagist/v/lexian-droid/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/lexian-droid/laravel-motd) -[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/lexian-droid/laravel-motd/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/lexian-droid/laravel-motd/actions?query=workflow%3Arun-tests+branch%3Amain) -[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/lexian-droid/laravel-motd/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/lexian-droid/laravel-motd/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain) -[![Total Downloads](https://img.shields.io/packagist/dt/lexian-droid/laravel-motd.svg?style=flat-square)](https://packagist.org/packages/lexian-droid/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 a simple package to display MOTD messages to your users, it can be used to display updates, maintenance messages, or any other message @@ -17,7 +17,7 @@ and it'll return the **newest** message that is not expired. You can install the package via composer: ```bash -composer require lexian-droid/laravel-motd +composer require lexiandev/laravel-motd ``` You can publish and run the migrations with: @@ -72,7 +72,7 @@ Please review [our security policy](../../security/policy) on how to report secu ## Credits -- [Lexian-droid](https://github.com/lexian-droid) +- [Lexian-droid](https://github.com/lexiandev) - [All Contributors](../../contributors) ## License diff --git a/composer.json b/composer.json index c454ad5..17f40ab 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "lexian-droid/laravel-motd", + "name": "lexiandev/laravel-motd", "description": "Display MOTD messages to your users.", "keywords": [ - "lexian-droid", + "lexiandev", "laravel", "laravel-motd" ], - "homepage": "https://github.com/lexian-droid/laravel-motd", + "homepage": "https://github.com/lexiandev/laravel-motd", "license": "MIT", "authors": [ { @@ -35,13 +35,13 @@ }, "autoload": { "psr-4": { - "lexian-droid\\Motd\\": "src/", - "lexian-droid\\Motd\\Database\\Factories\\": "database/factories/" + "Lexiandev\\Motd\\": "src/", + "Lexiandev\\Motd\\Database\\Factories\\": "database/factories/" } }, "autoload-dev": { "psr-4": { - "lexian-droid\\Motd\\Tests\\": "tests/", + "Lexiandev\\Motd\\Tests\\": "tests/", "Workbench\\App\\": "workbench/app/" } }, @@ -73,10 +73,10 @@ "extra": { "laravel": { "providers": [ - "lexian-droid\\Motd\\MotdServiceProvider" + "Lexiandev\\Motd\\MotdServiceProvider" ], "aliases": { - "Motd": "lexian-droid\\Motd\\Facades\\Motd" + "Motd": "Lexiandev\\Motd\\Facades\\Motd" } } }, diff --git a/config/motd.php b/config/motd.php index bab4b97..68bd924 100644 --- a/config/motd.php +++ b/config/motd.php @@ -1,6 +1,6 @@ - + tests diff --git a/src/Commands/MotdCommand.php b/src/Commands/MotdCommand.php index 14a5785..7aae07c 100644 --- a/src/Commands/MotdCommand.php +++ b/src/Commands/MotdCommand.php @@ -1,6 +1,6 @@ in(__DIR__); diff --git a/tests/TestCase.php b/tests/TestCase.php index 60eef35..be908de 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -1,9 +1,9 @@ 'lexian-droid\\Motd\\Database\\Factories\\'.class_basename($modelName).'Factory' + fn (string $modelName) => 'Lexiandev\\Motd\\Database\\Factories\\'.class_basename($modelName).'Factory' ); }