Skip to content

Commit

Permalink
🦖 init
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinosswald committed Nov 7, 2023
1 parent 3fce81b commit 1eeba04
Show file tree
Hide file tree
Showing 35 changed files with 4,512 additions and 844 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: marvinosswald
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/marvinosswald/filament-activity-log/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/marvinosswald/filament-activity-log/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/marvinosswald/filament-activity-log/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 mail@marvinosswald.de instead of using the issue tracker.
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-activity-log` will be documented in this file.

## 1.0.0 - 202X-XX-XX

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) :vendor_name <author@domain.com>
Copyright (c) marvinosswald <mail@marvinosswald.de>

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
56 changes: 17 additions & 39 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,61 +1,39 @@
# :package_description
# Activity Log for Filament

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

<!--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.
This is a Infolist Entry which displays log line from https://github.com/spatie/laravel-activitylog.

## Installation

You can install the package via composer:

```bash
composer require :vendor_slug/:package_slug
```

You can publish and run the migrations with:

```bash
php artisan vendor:publish --tag=":package_slug-migrations"
php artisan migrate
```

You can publish the config file with:

```bash
php artisan vendor:publish --tag=":package_slug-config"
composer require marvinosswald/filament-activity-log
```

Optionally, you can publish the views using

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

This is the contents of the published config file:

```php
return [
];
php artisan vendor:publish --tag="filament-activity-log-views"
```

## Usage

```php
$variable = new VendorName\Skeleton();
echo $variable->echoPhrase('Hello, VendorName!');
ActivityLogEntry::make()
->with('shippingAddress.activities')
->formatSubjectUsing(function (Activity $activity) {
if ($activity->subject_type == OrderAddress::class) {
return __("models.{$activity->subject_type}", ['type' => $activity->subject->type]);
}
return __("models.{$activity->subject_type}");
})
```

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

## Credits

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

## License
Expand Down
50 changes: 0 additions & 50 deletions bin/build.js

This file was deleted.

37 changes: 16 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
{
"name": ":vendor_slug/:package_slug",
"description": ":package_description",
"name": "marvinosswald/filament-activity-log",
"description": "This is my package filament-activity-log",
"keywords": [
":vendor_name",
"marvinosswald",
"laravel",
":package_slug"
"filament-activity-log"
],
"homepage": "https://github.com/:vendor_slug/:package_slug",
"homepage": "https://github.com/marvinosswald/filament-activity-log",
"support": {
"issues": "https://github.com/:vendor_slug/:package_slug/issues",
"source": "https://github.com/:vendor_slug/:package_slug"
"issues": "https://github.com/marvinosswald/filament-activity-log/issues",
"source": "https://github.com/marvinosswald/filament-activity-log"
},
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": "author@domain.com",
"name": "Marvin Osswald",
"email": "mail@marvinosswald.de",
"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",
"illuminate/contracts": "^10.0"
"illuminate/contracts": "^10.0",
"rogervila/array-diff-multidimensional": "^2.1",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"laravel/pint": "^1.0",
Expand All @@ -42,13 +41,12 @@
},
"autoload": {
"psr-4": {
"VendorName\\Skeleton\\": "src/",
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
"Marvinosswald\\FilamentActivityLog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VendorName\\Skeleton\\Tests\\": "tests/"
"Marvinosswald\\FilamentActivityLog\\Tests\\": "tests/"
}
},
"scripts": {
Expand All @@ -68,11 +66,8 @@
"extra": {
"laravel": {
"providers": [
"VendorName\\Skeleton\\SkeletonServiceProvider"
],
"aliases": {
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
}
"Marvinosswald\\FilamentActivityLog\\FilamentActivityLogServiceProvider"
]
}
},
"minimum-stability": "dev",
Expand Down
6 changes: 0 additions & 6 deletions config/skeleton.php

This file was deleted.

Loading

0 comments on commit 1eeba04

Please sign in to comment.