Skip to content

Commit

Permalink
Setup
Browse files Browse the repository at this point in the history
CodeWithDennis committed Jun 27, 2024
1 parent 634ce6e commit ccebbc5
Showing 36 changed files with 106 additions and 690 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: :vendor_name
github: CodeWithDennis
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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/CodeWithDennis/filament-simple-alert/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/CodeWithDennis/filament-simple-alert/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/CodeWithDennis/filament-simple-alert/security/policy
about: Learn how to notify us for sensitive bugs
2 changes: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Security Policy

If you discover any security related issues, please email author@domain.com instead of using the issue tracker.
If you discover any security related issues, please email personal.elsinga@gmail.com instead of using the issue tracker.
12 changes: 0 additions & 12 deletions .github/dependabot.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/dependabot-auto-merge.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/fix-php-code-style-issues.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/phpstan.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/update-changelog.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

All notable changes to `:package_name` will be documented in this file.
All notable changes to `filament-simple-alert` will be documented in this file.

## 1.0.0 - 202X-XX-XX

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) :vendor_name <author@domain.com>
Copyright (c) CodeWithDennis <personal.elsinga@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
32 changes: 12 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
# :package_description
# A plugin for adding straightforward alerts to your filament pages

[![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-styling.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Fix+PHP+code+styling"+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)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/codewithdennis/filament-simple-alert.svg?style=flat-square)](https://packagist.org/packages/codewithdennis/filament-simple-alert)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/codewithdennis/filament-simple-alert/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/codewithdennis/filament-simple-alert/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/codewithdennis/filament-simple-alert/fix-php-code-styling.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/codewithdennis/filament-simple-alert/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/codewithdennis/filament-simple-alert.svg?style=flat-square)](https://packagist.org/packages/codewithdennis/filament-simple-alert)

<!--delete-->
---
This repo can be used to scaffold a Filament plugin. 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. Make something great!
---
<!--/delete-->

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

@@ -22,26 +14,26 @@ This is where your description should go. Limit it to a paragraph or two. Consid
You can install the package via composer:

```bash
composer require :vendor_slug/:package_slug
composer require codewithdennis/filament-simple-alert
```

You can publish and run the migrations with:

```bash
php artisan vendor:publish --tag=":package_slug-migrations"
php artisan vendor:publish --tag="filament-simple-alert-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="filament-simple-alert-config"
```

Optionally, you can publish the views using

```bash
php artisan vendor:publish --tag=":package_slug-views"
php artisan vendor:publish --tag="filament-simple-alert-views"
```

This is the contents of the published config file:
@@ -54,8 +46,8 @@ return [
## Usage

```php
$variable = new VendorName\Skeleton();
echo $variable->echoPhrase('Hello, VendorName!');
$simpleAlert = new CodeWithDennis\SimpleAlert();
echo $simpleAlert->echoPhrase('Hello, CodeWithDennis!');
```

## Testing
@@ -78,7 +70,7 @@ Please review [our security policy](../../security/policy) on how to report secu

## Credits

- [:author_name](https://github.com/:author_username)
- [CodeWithDennis](https://github.com/CodeWithDennis)
- [All Contributors](../../contributors)

## License
2 changes: 1 addition & 1 deletion bin/build.js
Original file line number Diff line number Diff line change
@@ -46,5 +46,5 @@ const defaultOptions = {
compile({
...defaultOptions,
entryPoints: ['./resources/js/index.js'],
outfile: './resources/dist/skeleton.js',
outfile: './resources/dist/filament-simple-alert.js',
})
44 changes: 17 additions & 27 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,51 @@
{
"name": ":vendor_slug/:package_slug",
"description": ":package_description",
"name": "codewithdennis/filament-simple-alert",
"description": "A plugin for adding straightforward alerts to your filament pages",
"keywords": [
":vendor_name",
"CodeWithDennis",
"laravel",
":package_slug"
"filament-simple-alert"
],
"homepage": "https://github.com/:vendor_slug/:package_slug",
"homepage": "https://github.com/codewithdennis/filament-simple-alert",
"support": {
"issues": "https://github.com/:vendor_slug/:package_slug/issues",
"source": "https://github.com/:vendor_slug/:package_slug"
"issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
"source": "https://github.com/codewithdennis/filament-simple-alert"
},
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": "author@domain.com",
"name": "CodeWithDennis",
"email": "personal.elsinga@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"filament/forms": "^3.0",
"filament/tables": "^3.0",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.9",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.1",
"pestphp/pest-plugin-arch": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/laravel-ray": "^1.26"
"pestphp/pest-plugin-laravel": "^2.0"
},
"autoload": {
"psr-4": {
"VendorName\\Skeleton\\": "src/",
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
"CodeWithDennis\\SimpleAlert\\": "src/",
"CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"VendorName\\Skeleton\\Tests\\": "tests/"
"CodeWithDennis\\SimpleAlert\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
@@ -67,13 +57,13 @@
"extra": {
"laravel": {
"providers": [
"VendorName\\Skeleton\\SkeletonServiceProvider"
"CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
],
"aliases": {
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
"SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
6 changes: 6 additions & 0 deletions config/simple-alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

// config for CodeWithDennis/SimpleAlert
return [

];
6 changes: 0 additions & 6 deletions config/skeleton.php

This file was deleted.

370 changes: 0 additions & 370 deletions configure.php

This file was deleted.

2 changes: 1 addition & 1 deletion database/factories/ModelFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace VendorName\Skeleton\Database\Factories;
namespace CodeWithDennis\SimpleAlert\Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;

Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ return new class extends Migration
{
public function up()
{
Schema::create('migration_table_name_table', function (Blueprint $table) {
Schema::create('filament_simple_alert_table', function (Blueprint $table) {
$table->id();

// add fields
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@
"private": true,
"type": "module",
"scripts": {
"dev:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/skeleton.css --postcss --watch",
"dev:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/filament-simple-alert.css --postcss --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/skeleton.css --postcss --minify && npm run purge",
"build:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/filament-simple-alert.css --postcss --minify && npm run purge",
"build:scripts": "node bin/build.js",
"purge": "filament-purge -i resources/dist/skeleton.css -o resources/dist/skeleton.css -v 3.x",
"purge": "filament-purge -i resources/dist/filament-simple-alert.css -o resources/dist/filament-simple-alert.css -v 3.x",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
Empty file removed phpstan-baseline.neon
Empty file.
14 changes: 0 additions & 14 deletions phpstan.neon.dist

This file was deleted.

2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
backupStaticProperties="false"
>
<testsuites>
<testsuite name="VendorName Test Suite">
<testsuite name="CodeWithDennis Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
14 changes: 0 additions & 14 deletions pint.json

This file was deleted.

6 changes: 6 additions & 0 deletions resources/lang/en/simple-alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

// translations for CodeWithDennis/SimpleAlert
return [
//
];
6 changes: 0 additions & 6 deletions resources/lang/en/skeleton.php

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

namespace VendorName\Skeleton\Commands;
namespace CodeWithDennis\SimpleAlert\Commands;

use Illuminate\Console\Command;

class SkeletonCommand extends Command
class SimpleAlertCommand extends Command
{
public $signature = 'skeleton';
public $signature = 'filament-simple-alert';

public $description = 'My command';

16 changes: 16 additions & 0 deletions src/Facades/SimpleAlert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace CodeWithDennis\SimpleAlert\Facades;

use Illuminate\Support\Facades\Facade;

/**
* @see \CodeWithDennis\SimpleAlert\SimpleAlert
*/
class SimpleAlert extends Facade
{
protected static function getFacadeAccessor()
{
return \CodeWithDennis\SimpleAlert\SimpleAlert::class;
}
}
16 changes: 0 additions & 16 deletions src/Facades/Skeleton.php

This file was deleted.

5 changes: 5 additions & 0 deletions src/SimpleAlert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

namespace CodeWithDennis\SimpleAlert;

class SimpleAlert {}
6 changes: 3 additions & 3 deletions src/SkeletonPlugin.php → src/SimpleAlertPlugin.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

namespace VendorName\Skeleton;
namespace CodeWithDennis\SimpleAlert;

use Filament\Contracts\Plugin;
use Filament\Panel;

class SkeletonPlugin implements Plugin
class SimpleAlertPlugin implements Plugin
{
public function getId(): string
{
return 'skeleton';
return 'filament-simple-alert';
}

public function register(Panel $panel): void
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace VendorName\Skeleton;
namespace CodeWithDennis\SimpleAlert;

use Filament\Support\Assets\AlpineComponent;
use Filament\Support\Assets\Asset;
@@ -13,14 +13,14 @@
use Spatie\LaravelPackageTools\Commands\InstallCommand;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;
use VendorName\Skeleton\Commands\SkeletonCommand;
use VendorName\Skeleton\Testing\TestsSkeleton;
use CodeWithDennis\SimpleAlert\Commands\SimpleAlertCommand;
use CodeWithDennis\SimpleAlert\Testing\TestsSimpleAlert;

class SkeletonServiceProvider extends PackageServiceProvider
class SimpleAlertServiceProvider extends PackageServiceProvider
{
public static string $name = 'skeleton';
public static string $name = 'filament-simple-alert';

public static string $viewNamespace = 'skeleton';
public static string $viewNamespace = 'filament-simple-alert';

public function configurePackage(Package $package): void
{
@@ -36,7 +36,7 @@ public function configurePackage(Package $package): void
->publishConfigFile()
->publishMigrations()
->askToRunMigrations()
->askToStarRepoOnGitHub(':vendor_slug/:package_slug');
->askToStarRepoOnGitHub('codewithdennis/filament-simple-alert');
});

$configFileName = $package->shortName();
@@ -80,18 +80,18 @@ public function packageBooted(): void
if (app()->runningInConsole()) {
foreach (app(Filesystem::class)->files(__DIR__ . '/../stubs/') as $file) {
$this->publishes([
$file->getRealPath() => base_path("stubs/skeleton/{$file->getFilename()}"),
], 'skeleton-stubs');
$file->getRealPath() => base_path("stubs/filament-simple-alert/{$file->getFilename()}"),
], 'filament-simple-alert-stubs');
}
}

// Testing
Testable::mixin(new TestsSkeleton());
Testable::mixin(new TestsSimpleAlert());
}

protected function getAssetPackageName(): ?string
{
return ':vendor_slug/:package_slug';
return 'codewithdennis/filament-simple-alert';
}

/**
@@ -100,9 +100,9 @@ protected function getAssetPackageName(): ?string
protected function getAssets(): array
{
return [
// AlpineComponent::make('skeleton', __DIR__ . '/../resources/dist/components/skeleton.js'),
Css::make('skeleton-styles', __DIR__ . '/../resources/dist/skeleton.css'),
Js::make('skeleton-scripts', __DIR__ . '/../resources/dist/skeleton.js'),
// AlpineComponent::make('filament-simple-alert', __DIR__ . '/../resources/dist/components/filament-simple-alert.js'),
Css::make('filament-simple-alert-styles', __DIR__ . '/../resources/dist/filament-simple-alert.css'),
Js::make('filament-simple-alert-scripts', __DIR__ . '/../resources/dist/filament-simple-alert.js'),
];
}

@@ -112,7 +112,7 @@ protected function getAssets(): array
protected function getCommands(): array
{
return [
SkeletonCommand::class,
SimpleAlertCommand::class,
];
}

@@ -146,7 +146,7 @@ protected function getScriptData(): array
protected function getMigrations(): array
{
return [
'create_skeleton_table',
'create_filament-simple-alert_table',
];
}
}
5 changes: 0 additions & 5 deletions src/Skeleton.php

This file was deleted.

39 changes: 0 additions & 39 deletions src/SkeletonTheme.php

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace VendorName\Skeleton\Testing;
namespace CodeWithDennis\SimpleAlert\Testing;

use Livewire\Features\SupportTesting\Testable;

/**
* @mixin Testable
*/
class TestsSkeleton
class TestsSimpleAlert
{
//
}
2 changes: 1 addition & 1 deletion tests/Pest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

use VendorName\Skeleton\Tests\TestCase;
use CodeWithDennis\SimpleAlert\Tests\TestCase;

uses(TestCase::class)->in(__DIR__);
10 changes: 5 additions & 5 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace VendorName\Skeleton\Tests;
namespace CodeWithDennis\SimpleAlert\Tests;

use BladeUI\Heroicons\BladeHeroiconsServiceProvider;
use BladeUI\Icons\BladeIconsServiceProvider;
@@ -16,7 +16,7 @@
use Livewire\LivewireServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;
use RyanChandler\BladeCaptureDirective\BladeCaptureDirectiveServiceProvider;
use VendorName\Skeleton\SkeletonServiceProvider;
use CodeWithDennis\SimpleAlert\SimpleAlertServiceProvider;

class TestCase extends Orchestra
{
@@ -25,7 +25,7 @@ protected function setUp(): void
parent::setUp();

Factory::guessFactoryNamesUsing(
fn (string $modelName) => 'VendorName\\Skeleton\\Database\\Factories\\' . class_basename($modelName) . 'Factory'
fn (string $modelName) => 'CodeWithDennis\\SimpleAlert\\Database\\Factories\\' . class_basename($modelName) . 'Factory'
);
}

@@ -44,7 +44,7 @@ protected function getPackageProviders($app)
SupportServiceProvider::class,
TablesServiceProvider::class,
WidgetsServiceProvider::class,
SkeletonServiceProvider::class,
SimpleAlertServiceProvider::class,
];
}

@@ -53,7 +53,7 @@ public function getEnvironmentSetUp($app)
config()->set('database.default', 'testing');

/*
$migration = include __DIR__.'/../database/migrations/create_skeleton_table.php.stub';
$migration = include __DIR__.'/../database/migrations/create_filament-simple-alert_table.php.stub';
$migration->up();
*/
}

0 comments on commit ccebbc5

Please sign in to comment.