https://github.com/astrogoat/app-skeleton
Skeleton template for Strata CMS apps
https://github.com/astrogoat/app-skeleton
laravel php strata
Last synced: about 1 month ago
JSON representation
Skeleton template for Strata CMS apps
- Host: GitHub
- URL: https://github.com/astrogoat/app-skeleton
- Owner: astrogoat
- License: mit
- Created: 2021-09-30T13:11:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-25T13:36:31.000Z (10 months ago)
- Last Synced: 2025-10-29T03:29:10.551Z (8 months ago)
- Topics: laravel, php, strata
- Language: PHP
- Homepage:
- Size: 346 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# :package_description
[](https://packagist.org/packages/:vendor_slug/:package_slug)
[](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
[](https://packagist.org/packages/:vendor_slug/:package_slug)
---
This repo can be used to scaffold a Strata CMS App package. Follow these steps to get started:
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files
3. Remove this block of text.
4. Have fun creating your package.
---
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
## Installation
You can install the package via composer:
```bash
composer require :vendor_slug/:package_slug
```
## Usage
```php
$skeleton = new VendorName\Skeleton();
echo $skeleton->echoPhrase('Hello, VendorName!');
```
## Testing
```bash
composer test
```
## Releasing a new version
Use the included GitHub action to create a new release.
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.
or run `gh workflow run release.yml` from your skeleton directory if you have the GitHub CLI installed locally.
**Important**: Make sure that the Miles Bot user is included in the list of users who can bypass required pull request requirement
Your repo -> Settings -> Branches -> Main (edit) -> "Allow specified actors to bypass required pull requests"
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [:author_name](https://github.com/:author_username)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.