Skip to content

Commit d09bec9

Browse files
committed
init
1 parent e3cefbf commit d09bec9

34 files changed

+889
-560
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: :vendor_name
1+
github: elegantly

.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_slug/:package_name/discussions/new?category=q-a
4+
url: https://github.com/elegantengineeringtech/laravel-workflow/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/:vendor_slug/:package_name/discussions/new?category=ideas
7+
url: https://github.com/elegantengineeringtech/laravel-workflow/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/:vendor_slug/:package_name/security/policy
10+
url: https://github.com/elegantengineeringtech/laravel-workflow/security/policy
1111
about: Learn how to notify us for sensitive bugs

.github/workflows/update-changelog.yml

-32
This file was deleted.

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-workflow` 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 <author@domain.com>
3+
Copyright (c) elegantly <quentin.gabriele@gmail.com>
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-32
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,29 @@
1-
# :package_description
1+
# Scheduler based
22

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

278
## Installation
289

2910
You can install the package via composer:
3011

3112
```bash
32-
composer require :vendor_slug/:package_slug
13+
composer require elegantly/laravel-workflow
3314
```
3415

3516
You can publish and run the migrations with:
3617

3718
```bash
38-
php artisan vendor:publish --tag=":package_slug-migrations"
19+
php artisan vendor:publish --tag="laravel-workflow-migrations"
3920
php artisan migrate
4021
```
4122

4223
You can publish the config file with:
4324

4425
```bash
45-
php artisan vendor:publish --tag=":package_slug-config"
26+
php artisan vendor:publish --tag="laravel-workflow-config"
4627
```
4728

4829
This is the contents of the published config file:
@@ -55,14 +36,14 @@ return [
5536
Optionally, you can publish the views using
5637

5738
```bash
58-
php artisan vendor:publish --tag=":package_slug-views"
39+
php artisan vendor:publish --tag="laravel-workflow-views"
5940
```
6041

6142
## Usage
6243

6344
```php
64-
$variable = new VendorName\Skeleton();
65-
echo $variable->echoPhrase('Hello, VendorName!');
45+
$laravelWorkflow = new Elegantly\Workflow();
46+
echo $laravelWorkflow->echoPhrase('Hello, Elegantly!');
6647
```
6748

6849
## Testing
@@ -85,8 +66,8 @@ Please review [our security policy](../../security/policy) on how to report secu
8566

8667
## Credits
8768

88-
- [:author_name](https://github.com/:author_username)
89-
- [All Contributors](../../contributors)
69+
- [Quentin Gabriele](https://github.com/QuentinGab)
70+
- [All Contributors](../../contributors)
9071

9172
## License
9273

composer.json

+14-18
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "elegantly/laravel-workflow",
3+
"description": "Workflow for Laravel",
44
"keywords": [
5-
":vendor_name",
5+
"elegantly",
66
"laravel",
7-
":package_slug"
7+
"laravel-workflow"
88
],
9-
"homepage": "https://github.com/:vendor_slug/:package_slug",
9+
"homepage": "https://github.com/elegantengineeringtech/laravel-workflow",
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": ":author_name",
14-
"email": "author@domain.com",
13+
"name": "Quentin Gabriele",
14+
"email": "quentin.gabriele@gmail.com",
1515
"role": "Developer"
1616
}
1717
],
@@ -30,24 +30,23 @@
3030
"pestphp/pest-plugin-laravel": "^2.3",
3131
"phpstan/extension-installer": "^1.3",
3232
"phpstan/phpstan-deprecation-rules": "^1.1",
33-
"phpstan/phpstan-phpunit": "^1.3",
34-
"spatie/laravel-ray": "^1.35"
33+
"phpstan/phpstan-phpunit": "^1.3"
3534
},
3635
"autoload": {
3736
"psr-4": {
38-
"VendorName\\Skeleton\\": "src/",
39-
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/"
37+
"Elegantly\\Workflow\\": "src/",
38+
"Elegantly\\Workflow\\Database\\Factories\\": "database/factories/"
4039
}
4140
},
4241
"autoload-dev": {
4342
"psr-4": {
44-
"VendorName\\Skeleton\\Tests\\": "tests/",
43+
"Elegantly\\Workflow\\Tests\\": "tests/",
4544
"Workbench\\App\\": "workbench/app/"
4645
}
4746
},
4847
"scripts": {
4948
"post-autoload-dump": "@composer run prepare",
50-
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
49+
"clear": "@php vendor/bin/testbench package:purge-laravel-workflow --ansi",
5150
"prepare": "@php vendor/bin/testbench package:discover --ansi",
5251
"build": [
5352
"@composer run prepare",
@@ -73,11 +72,8 @@
7372
"extra": {
7473
"laravel": {
7574
"providers": [
76-
"VendorName\\Skeleton\\SkeletonServiceProvider"
77-
],
78-
"aliases": {
79-
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton"
80-
}
75+
"Elegantly\\Workflow\\WorkflowServiceProvider"
76+
]
8177
}
8278
},
8379
"minimum-stability": "dev",

config/skeleton.php

-6
This file was deleted.

config/workflow.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
return [
4+
5+
'queue' => env('WORKFLOW_QUEUE'),
6+
7+
'queue_connection' => env('WORKFLOW_QUEUE_CONNECTION'),
8+
9+
];

0 commit comments

Comments
 (0)