Skip to content

Commit

Permalink
chore: update template files
Browse files Browse the repository at this point in the history
  • Loading branch information
bensherred committed Dec 11, 2023
1 parent be83230 commit e72df26
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
/.github export-ignore
/art export-ignore
/tests export-ignore
/scripts export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
phpstan.neon.dist export-ignore
phpunit.xml.dist export-ignore
CONTRIBUTING.md export-ignore
CHANGELOG.md export-ignore
CONTRIBUTING.md export-ignore
README.md export-ignore
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<p align="center"><img width="400" src="./art/logo.svg" alt="package_name Logo"></p>

# 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)
Expand All @@ -6,7 +8,7 @@
[![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 package. Follow these steps to get started:
This repo can be used to create a Red Explosion PHP package. 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.
---
Expand All @@ -15,7 +17,7 @@ This is where your description should go. Limit it to a paragraph or two. Consid

## Installation

You can install the package via composer:
To get started, install package_name via the Composer package manager:

```bash
composer require red-explosion/package_slug
Expand Down
Empty file added art/.gitkeep
Empty file.
4 changes: 2 additions & 2 deletions tests/ArchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

declare(strict_types=1);

it('will not use debugging functions')
->expect(['dd', 'ddd', 'dump', 'var_dump', 'ray'])
it(description: 'will not use debugging functions')
->expect(['dd', 'dump', 'var_dump', 'ray'])
->each->not->toBeUsed();

0 comments on commit e72df26

Please sign in to comment.