Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ipunkt/laravel-package
A basic laravel package to start a new package
https://github.com/ipunkt/laravel-package
laravel laravel-5-package laravel5 laravel55 plugin seed-app
Last synced: about 2 months ago
JSON representation
A basic laravel package to start a new package
- Host: GitHub
- URL: https://github.com/ipunkt/laravel-package
- Owner: ipunkt
- License: mit
- Created: 2017-10-29T13:22:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-01T14:26:42.000Z (about 7 years ago)
- Last Synced: 2024-10-12T11:42:17.759Z (3 months ago)
- Topics: laravel, laravel-5-package, laravel5, laravel55, plugin, seed-app
- Language: PHP
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# laravel-package
A basic laravel package to start a new package.Simply type `composer create-project ipunkt/laravel-package YOUR-PACKAGE-NAME` and hit enter.
After installation you have to customize your generated plugin code.
Check all the given providers if you need them and the files. Remove all unnecessary ones.
Update this documentation to have your plugin documented like a hero.
Remove all above the line and update the text below the line.
---
# Your Package for Laravel
[![Latest Stable Version](https://poser.pugx.org/ipunkt/laravel-package/v/stable.svg)](https://packagist.org/packages/ipunkt/laravel-package) [![Latest Unstable Version](https://poser.pugx.org/ipunkt/laravel-package/v/unstable.svg)](https://packagist.org/packages/ipunkt/laravel-package) [![License](https://poser.pugx.org/ipunkt/laravel-package/license.svg)](https://packagist.org/packages/ipunkt/laravel-package) [![Total Downloads](https://poser.pugx.org/ipunkt/laravel-package/downloads.svg)](https://packagist.org/packages/ipunkt/laravel-package)
## Quickstart
```
composer require ipunkt/laravel-package
```We support package auto-discovery for laravel, so you are ready to use the package.
## Installation
Add to your composer.json following lines
"require": {
"ipunkt/laravel-package": "*"
}You can publish all provided files by typing `php artisan vendor:publish` and select to package provider (or one of the provided tags - but be careful, tags are global).
## Configuration
Here are the configuration options:
## Usage
You can use the package like so...