diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 96701be..0c49181 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/:vendor_name/:package_name/discussions/new?category=q-a + url: https://github.com/fintech/chat/discussions/new?category=q-a about: Ask the community for help - name: Request a feature - url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas + url: https://github.com/fintech/chat/discussions/new?category=ideas about: Share ideas for new features - name: Report a security issue - url: https://github.com/:vendor_name/:package_name/security/policy + url: https://github.com/fintech/chat/security/policy about: Learn how to notify us for sensitive bugs diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b3242..1a6d0b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # Changelog -All notable changes to `:package_name` will be documented in this file. +All notable changes to `chat` will be documented in this file. diff --git a/LICENSE.md b/LICENSE.md index 58c9ad4..dce5454 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) :vendor_name +Copyright (c) fintech 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 375da96..97223c1 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,15 @@ -# :package_description - -[![Latest Version on Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug) -[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain) -[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain) -[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug) - ---- -This repo can be used to scaffold a Laravel package. Follow these steps to get started: - -1. Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton. -2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files. -3. Have fun creating your package. -4. If you need help creating a package, consider picking up our Laravel Package Training video course. ---- - +# This is my package chat + +[![Latest Version on Packagist](https://img.shields.io/packagist/v/fintech/chat.svg?style=flat-square)](https://packagist.org/packages/fintech/chat) +[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/fintech/chat/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/fintech/chat/actions?query=workflow%3Arun-tests+branch%3Amain) +[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/fintech/chat/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/fintech/chat/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain) +[![Total Downloads](https://img.shields.io/packagist/dt/fintech/chat.svg?style=flat-square)](https://packagist.org/packages/fintech/chat) + This is where your description should go. Limit it to a paragraph or two. Consider adding a small example. ## Support us -[](https://spatie.be/github-ad-click/:package_name) +[](https://spatie.be/github-ad-click/chat) We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us). @@ -29,20 +20,20 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh You can install the package via composer: ```bash -composer require :vendor_slug/:package_slug +composer require fintech/chat ``` You can publish and run the migrations with: ```bash -php artisan vendor:publish --tag=":package_slug-migrations" +php artisan vendor:publish --tag="chat-migrations" php artisan migrate ``` You can publish the config file with: ```bash -php artisan vendor:publish --tag=":package_slug-config" +php artisan vendor:publish --tag="chat-config" ``` This is the contents of the published config file: @@ -55,14 +46,14 @@ return [ Optionally, you can publish the views using ```bash -php artisan vendor:publish --tag=":package_slug-views" +php artisan vendor:publish --tag="chat-views" ``` ## Usage ```php -$variable = new VendorName\Skeleton(); -echo $variable->echoPhrase('Hello, VendorName!'); +$chat = new Fintech\Chat(); +echo $chat->echoPhrase('Hello, Fintech!'); ``` ## Testing @@ -85,7 +76,7 @@ Please review [our security policy](../../security/policy) on how to report secu ## Credits -- [:author_name](https://github.com/:author_username) +- [Mohammad Hafijul Islam](https://github.com/hafijul233) - [All Contributors](../../contributors) ## License diff --git a/composer.json b/composer.json index 9b45554..ef7931c 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,17 @@ { - "name": ":vendor_slug/:package_slug", - "description": ":package_description", + "name": "fintech/chat", + "description": "This is my package chat", "keywords": [ - ":vendor_name", + "fintech", "laravel", - ":package_slug" + "chat" ], - "homepage": "https://github.com/:vendor_slug/:package_slug", + "homepage": "https://github.com/fintech/chat", "license": "MIT", "authors": [ { - "name": ":author_name", - "email": "author@domain.com", + "name": "Mohammad Hafijul Islam", + "email": "hafijul233@gmail.com", "role": "Developer" } ], @@ -35,12 +35,12 @@ }, "autoload": { "psr-4": { - "VendorName\\Skeleton\\": "src/" + "Fintech\\Chat\\": "src/" } }, "autoload-dev": { "psr-4": { - "VendorName\\Skeleton\\Tests\\": "tests/" + "Fintech\\Chat\\Tests\\": "tests/" } }, "scripts": { @@ -60,13 +60,13 @@ "extra": { "laravel": { "providers": [ - "VendorName\\Skeleton\\SkeletonServiceProvider" + "Fintech\\Chat\\ChatServiceProvider" ], "aliases": { - "Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton" + "Chat": "Fintech\\Chat\\Facades\\Chat" } } }, "minimum-stability": "dev", "prefer-stable": true -} +} \ No newline at end of file diff --git a/config/skeleton.php b/config/skeleton.php deleted file mode 100644 index 02743ff..0000000 --- a/config/skeleton.php +++ /dev/null @@ -1,41 +0,0 @@ - env('PACKAGE_Skeleton_ENABLED', true), - - /* - |-------------------------------------------------------------------------- - | Skeleton Group Root Prefix - |-------------------------------------------------------------------------- - | - | This value will be added to all your routes from this package - | Example: APP_URL/{root_prefix}/api/skeleton/action - | - | Note: while adding prefix add closing ending slash '/' - */ - - 'root_prefix' => 'test/', - - //** Model Config Point Do not Remove **// - - /* - |-------------------------------------------------------------------------- - | Repositories - |-------------------------------------------------------------------------- - | - | This value will be used across systems where a repositoy instance is needed - */ - - 'repositories' => [ - //** Repository Binding Config Point Do not Remove **// - ], - -]; diff --git a/configure.php b/configure.php deleted file mode 100644 index 555de99..0000000 --- a/configure.php +++ /dev/null @@ -1,267 +0,0 @@ -#!/usr/bin/env php - $version) { - if (in_array($name, $names, true)) { - unset($data['require-dev'][$name]); - } - } - - file_put_contents(__DIR__.'/composer.json', json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); -} - -function remove_composer_script($scriptName) -{ - $data = json_decode(file_get_contents(__DIR__.'/composer.json'), true); - - foreach ($data['scripts'] as $name => $script) { - if ($scriptName === $name) { - unset($data['scripts'][$name]); - break; - } - } - - file_put_contents(__DIR__.'/composer.json', json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); -} - -function remove_readme_paragraphs(string $file): void -{ - $contents = file_get_contents($file); - - file_put_contents( - $file, - preg_replace('/.*/s', '', $contents) ?: $contents - ); -} - -function safeUnlink(string $filename) -{ - if (file_exists($filename) && is_file($filename)) { - unlink($filename); - } -} - -function determineSeparator(string $path): string -{ - return str_replace('/', DIRECTORY_SEPARATOR, $path); -} - -function replaceForWindows(): array -{ - return preg_split('/\\r\\n|\\r|\\n/', run('dir /S /B * | findstr /v /i .git\ | findstr /v /i vendor | findstr /v /i '.basename(__FILE__).' | findstr /r /i /M /F:/ ":author :vendor :package VendorName skeleton migration_table_name vendor_name vendor_slug author@domain.com"')); -} - -function replaceForAllOtherOSes(): array -{ - return explode(PHP_EOL, run('grep -E -r -l -i ":author|:vendor|:package|VendorName|skeleton|migration_table_name|vendor_name|vendor_slug|author@domain.com" --exclude-dir=vendor ./* ./.github/* | grep -v '.basename(__FILE__))); -} - -$gitName = run('git config user.name'); -$authorName = ask('Author name', $gitName); - -$gitEmail = run('git config user.email'); -$authorEmail = ask('Author email', $gitEmail); - -$usernameGuess = explode(':', run('git config remote.origin.url'))[1]; -$usernameGuess = dirname($usernameGuess); -$usernameGuess = basename($usernameGuess); -$authorUsername = ask('Author username', $usernameGuess); - -$vendorName = ask('Vendor name', $authorUsername); -$vendorSlug = slugify($vendorName); -$vendorNamespace = str_replace('-', '', ucwords($vendorName)); -$vendorNamespace = ask('Vendor namespace', $vendorNamespace); - -$currentDirectory = getcwd(); -$folderName = basename($currentDirectory); - -$packageName = ask('Package name', $folderName); -$packageSlug = slugify($packageName); -$packageSlugWithoutPrefix = remove_prefix('laravel-', $packageSlug); - -$className = title_case($packageName); -$className = ask('Class name', $className); -$variableName = lcfirst($className); -$description = ask('Package description', "This is my package {$packageSlug}"); - -$usePhpStan = confirm('Enable PhpStan?', true); -$useLaravelPint = confirm('Enable Laravel Pint?', true); -$useDependabot = confirm('Enable Dependabot?', true); -$useLaravelRay = confirm('Use Ray for debugging?', true); -$useUpdateChangelogWorkflow = confirm('Use automatic changelog updater workflow?', true); - -writeln('------'); -writeln("Author : {$authorName} ({$authorUsername}, {$authorEmail})"); -writeln("Vendor : {$vendorName} ({$vendorSlug})"); -writeln("Package : {$packageSlug} <{$description}>"); -writeln("Namespace : {$vendorNamespace}\\{$className}"); -writeln("Class name : {$className}"); -writeln('---'); -writeln('Packages & Utilities'); -writeln('Use Laravel/Pint : '.($useLaravelPint ? 'yes' : 'no')); -writeln('Use Larastan/PhpStan : '.($usePhpStan ? 'yes' : 'no')); -writeln('Use Dependabot : '.($useDependabot ? 'yes' : 'no')); -writeln('Use Ray App : '.($useLaravelRay ? 'yes' : 'no')); -writeln('Use Auto-Changelog : '.($useUpdateChangelogWorkflow ? 'yes' : 'no')); -writeln('------'); - -writeln('This script will replace the above values in all relevant files in the project directory.'); - -if (! confirm('Modify files?', true)) { - exit(1); -} - -$files = (str_starts_with(strtoupper(PHP_OS), 'WIN') ? replaceForWindows() : replaceForAllOtherOSes()); - -foreach ($files as $file) { - replace_in_file($file, [ - ':author_name' => $authorName, - ':author_username' => $authorUsername, - 'author@domain.com' => $authorEmail, - ':vendor_name' => $vendorName, - ':vendor_slug' => $vendorSlug, - 'VendorName' => $vendorNamespace, - ':package_name' => $packageName, - ':package_slug' => $packageSlug, - ':package_slug_without_prefix' => $packageSlugWithoutPrefix, - 'Skeleton' => $className, - 'skeleton' => $packageSlug, - 'migration_table_name' => title_snake($packageSlug), - 'variable' => $variableName, - ':package_description' => $description, - ]); - - match (true) { - str_contains($file, determineSeparator('src/Skeleton.php')) => rename($file, determineSeparator('./src/'.$className.'.php')), - str_contains($file, determineSeparator('src/SkeletonServiceProvider.php')) => rename($file, determineSeparator('./src/'.$className.'ServiceProvider.php')), - str_contains($file, determineSeparator('src/Facades/Skeleton.php')) => rename($file, determineSeparator('./src/Facades/'.$className.'.php')), - str_contains($file, determineSeparator('src/Commands/SkeletonCommand.php')) => rename($file, determineSeparator('./src/Commands/'.$className.'Command.php')), - str_contains($file, determineSeparator('src/Exceptions/SkeletonException.php')) => rename($file, determineSeparator('./src/Exceptions/'.$className.'Exception.php')), - str_contains($file, determineSeparator('database/migrations/create_skeleton_table.php.stub')) => rename($file, determineSeparator('./database/migrations/create_'.title_snake($packageSlugWithoutPrefix).'_table.php.stub')), - str_contains($file, determineSeparator('config/skeleton.php')) => rename($file, determineSeparator('./config/'.$packageSlugWithoutPrefix.'.php')), - str_contains($file, 'README.md') => remove_readme_paragraphs($file), - default => [], - }; -} - -if (! $useLaravelPint) { - safeUnlink(__DIR__.'/.github/workflows/fix-php-code-style-issues.yml'); - safeUnlink(__DIR__.'/pint.json'); -} - -if (! $usePhpStan) { - safeUnlink(__DIR__.'/phpstan.neon.dist'); - safeUnlink(__DIR__.'/phpstan-baseline.neon'); - safeUnlink(__DIR__.'/.github/workflows/phpstan.yml'); - - remove_composer_deps([ - 'phpstan/extension-installer', - 'phpstan/phpstan-deprecation-rules', - 'phpstan/phpstan-phpunit', - 'nunomaduro/larastan', - ]); - - remove_composer_script('phpstan'); -} - -if (! $useDependabot) { - safeUnlink(__DIR__.'/.github/dependabot.yml'); - safeUnlink(__DIR__.'/.github/workflows/dependabot-auto-merge.yml'); -} - -if (! $useLaravelRay) { - remove_composer_deps(['spatie/laravel-ray']); -} - -if (! $useUpdateChangelogWorkflow) { - safeUnlink(__DIR__.'/.github/workflows/update-changelog.yml'); -} - -confirm('Execute `composer install` and run tests?') && run('composer install && composer test'); - -confirm('Let this script delete itself?', true) && unlink(__FILE__); diff --git a/database/migrations/create_skeleton_table.php.stub b/database/migrations/create_skeleton_table.php.stub deleted file mode 100644 index 2efdce9..0000000 --- a/database/migrations/create_skeleton_table.php.stub +++ /dev/null @@ -1,19 +0,0 @@ -id(); - - // add fields - - $table->timestamps(); - }); - } -}; diff --git a/phpunit.xml.dist b/phpunit.xml.dist index e953c0e..9e66cf8 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -16,7 +16,7 @@ backupStaticProperties="false" > - + tests diff --git a/routes/api.php b/routes/api.php index 8ed7749..647eb45 100644 --- a/routes/api.php +++ b/routes/api.php @@ -13,8 +13,8 @@ | is assigned the "API" middleware group. Enjoy building your API! | */ -if (Config::get('fintech.skeleton.enabled')) { - Route::prefix('skeleton')->name('skeleton.')->group(function () { +if (Config::get('fintech.chat.enabled')) { + Route::prefix('chat')->name('chat.')->group(function () { //DO NOT REMOVE THIS LINE// }); diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index eb0cff7..36ea954 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -1,12 +1,12 @@ comment('All done'); - - return self::SUCCESS; - } -} diff --git a/src/Exceptions/SkeletonException.php b/src/Exceptions/SkeletonException.php deleted file mode 100644 index eba60aa..0000000 --- a/src/Exceptions/SkeletonException.php +++ /dev/null @@ -1,23 +0,0 @@ - $binding) { + foreach (Config::get('fintech.chat.repositories', []) as $interface => $binding) { $this->app->bind($interface, function ($app) use ($binding) { return $app->make($binding); }); @@ -27,6 +27,6 @@ public function register(): void */ public function provides(): array { - return array_keys(Config::get('fintech.skeleton.repositories', [])); + return array_keys(Config::get('fintech.chat.repositories', [])); } } diff --git a/src/RouteServiceProvider.php b/src/RouteServiceProvider.php index 0c0085f..83e1129 100644 --- a/src/RouteServiceProvider.php +++ b/src/RouteServiceProvider.php @@ -1,6 +1,6 @@ configureRateLimiting(); - $root_prefix = Config::get('skeleton.root_prefix', ''); + $root_prefix = Config::get('chat.root_prefix', ''); $this->routes(function () use (&$root_prefix) { Route::prefix("{$root_prefix}api") diff --git a/src/Skeleton.php b/src/Skeleton.php deleted file mode 100644 index e2408da..0000000 --- a/src/Skeleton.php +++ /dev/null @@ -1,8 +0,0 @@ -mergeConfigFrom( - __DIR__.'/../config/skeleton.php', 'fintech.skeleton' - ); - - $this->app->register(RouteServiceProvider::class); - $this->app->register(RepositoryServiceProvider::class); - } - - /** - * Bootstrap any package services. - */ - public function boot(): void - { - $this->publishes([ - __DIR__.'/../config/skeleton.php' => config_path('fintech/skeleton.php'), - ]); - - $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); - - $this->loadTranslationsFrom(__DIR__.'/../lang', 'skeleton'); - - $this->publishes([ - __DIR__.'/../lang' => $this->app->langPath('vendor/skeleton'), - ]); - - $this->loadViewsFrom(__DIR__.'/../resources/views', 'skeleton'); - - $this->publishes([ - __DIR__.'/../resources/views' => resource_path('views/vendor/skeleton'), - ]); - - if ($this->app->runningInConsole()) { - $this->commands([ - InstallCommand::class, - SkeletonCommand::class, - ]); - } - } -} diff --git a/tests/Pest.php b/tests/Pest.php index 7fe1500..57780ee 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -1,5 +1,5 @@ in(__DIR__); diff --git a/tests/TestCase.php b/tests/TestCase.php index 8c6b90d..636d22d 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -1,10 +1,10 @@