Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ylsideas/tall-package-template
https://github.com/ylsideas/tall-package-template
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ylsideas/tall-package-template
- Owner: ylsideas
- License: mit
- Created: 2021-12-02T06:45:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T21:06:50.000Z (over 1 year ago)
- Last Synced: 2023-07-03T22:22:42.035Z (over 1 year ago)
- Language: PHP
- Size: 675 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
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_name
[![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)
[![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)
[![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)
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)---
This repo can be used to scaffold a Simple TALL (Tailwind CSS, AlpineJS, Laravel, Livewire) package that could act as
an add-on dash to your project (Think Nova, Telescope or Horizon).
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.
5. If you need help creating a package, consider picking up our Laravel Package Training video course.
---:package_description
## Support us
The template here is made by YLS Ideas but most of the difficult work came from Spatie's Laravel package template.
Please consider supporting Spatie as they made so many useful things for the community.[](https://spatie.be/github-ad-click/:package_name)
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).
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).
## Installation
You can install the package via composer:
```bash
composer require :vendor_slug/:package_slug
```You can install :package_name using the built in artisan command:
```bash
php artisan skeleton:install
```Once installed you may enable :package_name by setting the env
```dotenv
SKELETON_ENABLED=true
```You may also configure the security of :package_name by editing the SkeletonServiceProvider
installed in your Providers folder.```php
protected function gate(): void
{
Gate::define('viewSkeleton', function ($user) {
return true;
});
}
```## Testing
```bash
composer test
```## 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.