Skip to content

Commit f257c83

Browse files
committed
configured package
1 parent a9500f9 commit f257c83

20 files changed

+42
-545
lines changed

.github/FUNDING.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
github: :vendor_name
1+
github: rokde
2+
custom: [ "https://paypal.me/rok" ]

.github/ISSUE_TEMPLATE/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a
4+
url: https://github.com/rokde/laravel-clone-database-command/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas
7+
url: https://github.com/rokde/laravel-clone-database-command/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/:vendor_name/:package_name/security/policy
10+
url: https://github.com/rokde/laravel-clone-database-command/security/policy
1111
about: Learn how to notify us for sensitive bugs

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changelog
22

3-
All notable changes to `:package_name` will be documented in this file.
3+
All notable changes to `laravel-clone-database-command` will be documented in this file.

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) :vendor_name <[email protected]>
3+
Copyright (c) Robert Kummer <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+13-30
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,31 @@
1-
# :package_description
2-
3-
[![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)
4-
[![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)
5-
[![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)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
7-
<!--delete-->
8-
---
9-
This repo can be used to scaffold a Laravel package. Follow these steps to get started:
10-
11-
1. Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
12-
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
13-
3. Have fun creating your package.
14-
4. If you need help creating a package, consider picking up our <a href="https://laravelpackage.training">Laravel Package Training</a> video course.
15-
---
16-
<!--/delete-->
17-
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
18-
19-
## Support us
1+
# This is my package laravel-clone-database-command
202

21-
[<img src="https://github-ads.s3.eu-central-1.amazonaws.com/:package_name.jpg?t=1" width="419px" />](https://spatie.be/github-ad-click/:package_name)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/rokde/laravel-clone-database-command.svg?style=flat-square)](https://packagist.org/packages/rokde/laravel-clone-database-command)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/rokde/laravel-clone-database-command/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/rokde/laravel-clone-database-command/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/rokde/laravel-clone-database-command/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/rokde/laravel-clone-database-command/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/rokde/laravel-clone-database-command.svg?style=flat-square)](https://packagist.org/packages/rokde/laravel-clone-database-command)
227

23-
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).
24-
25-
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).
8+
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
269

2710
## Installation
2811

2912
You can install the package via composer:
3013

3114
```bash
32-
composer require :vendor_slug/:package_slug
15+
composer require rokde/laravel-clone-database-command
3316
```
3417

3518
You can publish and run the migrations with:
3619

3720
```bash
38-
php artisan vendor:publish --tag=":package_slug-migrations"
21+
php artisan vendor:publish --tag="laravel-clone-database-command-migrations"
3922
php artisan migrate
4023
```
4124

4225
You can publish the config file with:
4326

4427
```bash
45-
php artisan vendor:publish --tag=":package_slug-config"
28+
php artisan vendor:publish --tag="laravel-clone-database-command-config"
4629
```
4730

4831
This is the contents of the published config file:
@@ -55,14 +38,14 @@ return [
5538
Optionally, you can publish the views using
5639

5740
```bash
58-
php artisan vendor:publish --tag=":package_slug-views"
41+
php artisan vendor:publish --tag="laravel-clone-database-command-views"
5942
```
6043

6144
## Usage
6245

6346
```php
64-
$variable = new VendorName\Skeleton();
65-
echo $variable->echoPhrase('Hello, VendorName!');
47+
$laravelCloneDatabaseCommand = new Rokde\LaravelCloneDatabaseCommand();
48+
echo $laravelCloneDatabaseCommand->echoPhrase('Hello, Rokde!');
6649
```
6750

6851
## Testing
@@ -85,7 +68,7 @@ Please review [our security policy](../../security/policy) on how to report secu
8568

8669
## Credits
8770

88-
- [:author_name](https://github.com/:author_username)
71+
- [Robert Kummer](https://github.com/rokde)
8972
- [All Contributors](../../contributors)
9073

9174
## License

composer.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "rokde/laravel-clone-database-command",
3+
"description": "This is my package laravel-clone-database-command",
44
"keywords": [
5-
":vendor_name",
65
"laravel",
7-
":package_slug"
6+
"database",
7+
"gdpr",
8+
"dsgvo"
89
],
9-
"homepage": "https://github.com/:vendor_slug/:package_slug",
10+
"homepage": "https://github.com/rokde/laravel-clone-database-command",
1011
"license": "MIT",
1112
"authors": [
1213
{
13-
"name": ":author_name",
14-
"email": "[email protected]",
14+
"name": "Robert Kummer",
15+
"email": "[email protected]",
1516
"role": "Developer"
1617
}
1718
],
@@ -30,24 +31,23 @@
3031
"pestphp/pest-plugin-laravel": "^2.0",
3132
"phpstan/extension-installer": "^1.1",
3233
"phpstan/phpstan-deprecation-rules": "^1.0",
33-
"phpstan/phpstan-phpunit": "^1.0",
34-
"spatie/laravel-ray": "^1.26"
34+
"phpstan/phpstan-phpunit": "^1.0"
3535
},
3636
"autoload": {
3737
"psr-4": {
38-
"VendorName\\Skeleton\\": "src/",
39-
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
38+
"Rokde\\LaravelCloneDatabaseCommand\\": "src/",
39+
"Rokde\\LaravelCloneDatabaseCommand\\Database\\Factories\\": "database/factories/"
4040
}
4141
},
4242
"autoload-dev": {
4343
"psr-4": {
44-
"VendorName\\Skeleton\\Tests\\": "tests/",
44+
"Rokde\\LaravelCloneDatabaseCommand\\Tests\\": "tests/",
4545
"Workbench\\App\\": "workbench/app/"
4646
}
4747
},
4848
"scripts": {
4949
"post-autoload-dump": "@composer run prepare",
50-
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
50+
"clear": "@php vendor/bin/testbench package:purge-laravel-clone-database-command --ansi",
5151
"prepare": "@php vendor/bin/testbench package:discover --ansi",
5252
"build": [
5353
"@composer run prepare",
@@ -73,10 +73,10 @@
7373
"extra": {
7474
"laravel": {
7575
"providers": [
76-
"VendorName\\Skeleton\\SkeletonServiceProvider"
76+
"Rokde\\LaravelCloneDatabaseCommand\\LaravelCloneDatabaseCommandServiceProvider"
7777
],
7878
"aliases": {
79-
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
79+
"LaravelCloneDatabaseCommand": "Rokde\\LaravelCloneDatabaseCommand\\Facades\\LaravelCloneDatabaseCommand"
8080
}
8181
}
8282
},

config/skeleton.php

-6
This file was deleted.

0 commit comments

Comments
 (0)