Skip to content

Commit 604932d

Browse files
committed
initial commit after setup
1 parent f317649 commit 604932d

27 files changed

+92
-244
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: :vendor_name
1+
github: astrogoat

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
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_slug/discussions/new?category=q-a
4+
url: https://github.com/astrogoat/postscript/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_slug/discussions/new?category=ideas
7+
url: https://github.com/astrogoat/postscript/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a bug
10-
url: https://github.com/:vendor_slug/:package_slug/issues/new
10+
url: https://github.com/astrogoat/postscript/issues/new
1111
about: Report a reproducable bug

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Security Policy
22

3-
If you discover any security related issues, please email author@domain.com instead of using the issue tracker.
3+
If you discover any security related issues, please email michalick.brett@gmail.com instead of using the issue tracker.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
url: https://miles.hlx.dev/webhooks/github
1414
data: '{
15-
"topic": "deploy/astrogoat:skeleton",
15+
"topic": "deploy/astrogoat:postscript",
1616
"branch": "${{ github.ref_name }}",
1717
"server": "production"
1818
}'

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
All notable changes to `:package_name` will be documented in this file.
3+
All notable changes to `postscript` will be documented in this file.
44

55
## 1.0.0 - 202X-XX-XX
66

LICENSE.md

Lines changed: 1 addition & 1 deletion
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) astrogoat <michalick.brett@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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# :package_description
1+
# A Postscript app for Strata
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/workflow/status/:vendor_slug/:package_slug/run-tests?label=tests)](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/workflow/status/:vendor_slug/:package_slug/Check%20&%20fix%20styling?label=code%20style)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Check+%26+fix+styling"+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)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/astrogoat/postscript.svg?style=flat-square)](https://packagist.org/packages/astrogoat/postscript)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/astrogoat/postscript/run-tests?label=tests)](https://github.com/astrogoat/postscript/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/astrogoat/postscript/Check%20&%20fix%20styling?label=code%20style)](https://github.com/astrogoat/postscript/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/astrogoat/postscript.svg?style=flat-square)](https://packagist.org/packages/astrogoat/postscript)
77

88
---
99
This repo can be used to scaffold a Strata CMS App package. Follow these steps to get started:
1010

11-
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton
11+
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this postscript
1212
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files
1313
3. Remove this block of text.
1414
4. Have fun creating your package.
@@ -21,14 +21,14 @@ This is where your description should go. Limit it to a paragraph or two. Consid
2121
You can install the package via composer:
2222

2323
```bash
24-
composer require :vendor_slug/:package_slug
24+
composer require astrogoat/postscript
2525
```
2626

2727
## Usage
2828

2929
```php
30-
$skeleton = new VendorName\Skeleton();
31-
echo $skeleton->echoPhrase('Hello, VendorName!');
30+
$postscript = new Astrogoat\Postscript();
31+
echo $postscript->echoPhrase('Hello, Astrogoat!');
3232
```
3333

3434
## Testing
@@ -40,8 +40,8 @@ composer test
4040
## Releasing a new version
4141

4242
Use the included GitHub action to create a new release.
43-
Go to https://github.com/astrogoat/skeleton/actions/workflows/release.yml click the "Run workflow" dropdown, select your version level bump, and click the "Run workflow" button.
44-
or run `gh workflow run release.yml` from your skeleton directory if you have the GitHub CLI installed locally.
43+
Go to https://github.com/astrogoat/postscript/actions/workflows/release.yml click the "Run workflow" dropdown, select your version level bump, and click the "Run workflow" button.
44+
or run `gh workflow run release.yml` from your postscript directory if you have the GitHub CLI installed locally.
4545

4646
**Important**: Make sure that the Miles Bot user is included in the list of users who can bypass required pull request requirement
4747
Your repo -> Settings -> Branches -> Main (edit) -> "Allow specified actors to bypass required pull requests"
@@ -64,7 +64,7 @@ Please review [our security policy](../../security/policy) on how to report secu
6464

6565
## Credits
6666

67-
- [:author_name](https://github.com/:author_username)
67+
- [Brett Michalick](https://github.com/astrogoat)
6868
- [All Contributors](../../contributors)
6969

7070
## License

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "astrogoat/postscript",
3+
"description": "A Postscript app for Strata",
44
"keywords": [
5-
":vendor_name",
5+
"astrogoat",
66
"laravel",
77
"strata",
8-
":package_slug"
8+
"postscript"
99
],
10-
"homepage": "https://github.com/:vendor_slug/:package_slug",
10+
"homepage": "https://github.com/astrogoat/postscript",
1111
"license": "MIT",
1212
"authors": [
1313
{
14-
"name": ":author_name",
15-
"email": "author@domain.com",
14+
"name": "Brett Michalick",
15+
"email": "michalick.brett@gmail.com",
1616
"role": "Developer"
1717
}
1818
],
@@ -37,13 +37,13 @@
3737
},
3838
"autoload": {
3939
"psr-4": {
40-
"VendorName\\Skeleton\\": "src",
41-
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories"
40+
"Astrogoat\\Postscript\\": "src",
41+
"Astrogoat\\Postscript\\Database\\Factories\\": "database/factories"
4242
}
4343
},
4444
"autoload-dev": {
4545
"psr-4": {
46-
"VendorName\\Skeleton\\Tests\\": "tests"
46+
"Astrogoat\\Postscript\\Tests\\": "tests"
4747
}
4848
},
4949
"scripts": {
@@ -56,10 +56,10 @@
5656
"extra": {
5757
"laravel": {
5858
"providers": [
59-
"VendorName\\Skeleton\\SkeletonServiceProvider"
59+
"Astrogoat\\Postscript\\PostscriptServiceProvider"
6060
],
6161
"aliases": {
62-
"Skeleton": "VendorName\\Skeleton\\SkeletonFacade"
62+
"Postscript": "Astrogoat\\Postscript\\PostscriptFacade"
6363
}
6464
}
6565
},

config/skeleton.php renamed to config/postscript.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
// config for VendorName/Skeleton
2+
// config for Astrogoat/Postscript
33

44
return [
55
/*

configure.php

Lines changed: 0 additions & 153 deletions
This file was deleted.

0 commit comments

Comments
 (0)