Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.