Skip to content

Commit

Permalink
refactor: update replacement values
Browse files Browse the repository at this point in the history
  • Loading branch information
bensherred committed Nov 23, 2023
1 parent 8b60265 commit 8e53dcb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE /config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/red-explosion/:package_slug/discussions/new?category=q-a
url: https://github.com/red-explosion/package_slug/discussions/new?category=q-a
about: Ask the community for help
- name: Request a feature
url: https://github.com/red-explosion/:package_slug/discussions/new?category=ideas
url: https://github.com/red-explosion/package_slug/discussions/new?category=ideas
about: Share ideas for new features
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# :package_name
# package_name

[![Latest Version on Packagist](https://img.shields.io/packagist/v/red-explosion/:package_slug.svg?style=flat-square)](https://packagist.org/packages/red-explosion/:package_slug)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/red-explosion/:package_slug/tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/red-explosion/:package_slug/actions/workflows/tests.yaml?query=branch:main)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/red-explosion/:package_slug/coding-standards.yml?label=code%20style&style=flat-square)](https://github.com/red-explosion/:package_slug/actions/workflows/coding-standards.yml?query=branch:main)
[![Total Downloads](https://img.shields.io/packagist/dt/red-explosion/:package_slug.svg?style=flat-square)](https://packagist.org/packages/red-explosion/:package_slug)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/red-explosion/package_slug.svg?style=flat-square)](https://packagist.org/packages/red-explosion/package_slug)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/red-explosion/package_slug/tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/red-explosion/package_slug/actions/workflows/tests.yaml?query=branch:main)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/red-explosion/package_slug/coding-standards.yml?label=code%20style&style=flat-square)](https://github.com/red-explosion/package_slug/actions/workflows/coding-standards.yml?query=branch:main)
[![Total Downloads](https://img.shields.io/packagist/dt/red-explosion/package_slug.svg?style=flat-square)](https://packagist.org/packages/red-explosion/package_slug)
<!--delete-->
---
This repo can be used to scaffold a Red Explosion Laravel package. Follow these steps to get started:
Expand All @@ -19,7 +19,7 @@ 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 red-explosion/:package_slug
composer require red-explosion/package_slug
```

You can publish and run the migrations with:
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "red-explosion/:package_slug",
"description": ":package_description",
"name": "red-explosion/package_slug",
"description": "package_description",
"license": "MIT",
"homepage": "https://github.com/red-explosion/:package_slug",
"homepage": "https://github.com/red-explosion/package_slug",
"type": "library",
"keywords": [
"red-explosion",
"laravel",
":package_slug"
"package_slug"
],
"authors": [
{
"name": ":author_name",
"email": ":author_email"
"name": "author_name",
"email": "author_email"
}
],
"require": {
Expand Down Expand Up @@ -41,7 +41,7 @@
"scripts": {
"lint": "./vendor/bin/pint --config vendor/red-explosion/pint-config/pint.json",
"test:lint": "./vendor/bin/pint --config vendor/red-explosion/pint-config/pint.json --test",
"test:types": "phpstan analyse --ansi",
"test:types": "./vendor/bin/phpstan analyse --ansi",
"test:unit": "./vendor/bin/pest --compact --colors=always",
"test": [
"@test:lint",
Expand Down

0 comments on commit 8e53dcb

Please sign in to comment.