Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yediyuz/laravel-package
A skeleton repository for Yediyuz's Laravel Packages
https://github.com/yediyuz/laravel-package
laravel package skeleton template yediyuz
Last synced: 3 days ago
JSON representation
A skeleton repository for Yediyuz's Laravel Packages
- Host: GitHub
- URL: https://github.com/yediyuz/laravel-package
- Owner: yediyuz
- License: mit
- Created: 2022-03-07T22:58:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T22:59:01.000Z (3 months ago)
- Last Synced: 2024-08-22T00:22:16.537Z (3 months ago)
- Topics: laravel, package, skeleton, template, yediyuz
- Language: PHP
- Homepage: https://yediyuz.com
- Size: 36.1 KB
- Stars: 14
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# :package_title
[![Tests](https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/tests?label=tests)](https://github.com/:vendor_slug/:package_slug/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/:vendor_slug/:package_slug/branch/:default_branch/graph/badge.svg?token=:codecov_token)](https://codecov.io/gh/:vendor_slug/:package_slug)
[![Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)## Installation
You can install the package via composer:
```bash
composer require :vendor_slug/:package_slug
```You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag=":package_slug-migrations"
php artisan migrate
```You can publish the config file with:
```bash
php artisan vendor:publish --tag=":package_slug-config"
```Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag=":package_slug-views"
```## Usage
```php
$variable = new VendorName\Skeleton();
echo $variable->echoPhrase('Hello, VendorName!');
```## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](https://github.com/yediyuz/.github/blob/master/CONTRIBUTING.md) for details.
## Security
If you've found a bug regarding security please mail [email protected] instead of using the issue tracker.
## Credits
- [Spatie](https://github.com/spatie)
- [:author_name](https://github.com/:author_username)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.