Download the PHP package tjventurini/service-provider without Composer
On this page you can find all versions of the php package tjventurini/service-provider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tjventurini/service-provider
More information about tjventurini/service-provider
Files in tjventurini/service-provider
Package service-provider
Short Description A simple laravel ServiceProvider class for standardized packages.
License MIT
Informations about the package service-provider
Service Provider (BETA)
This package provides a the SimpleServiceProvider
class that you can use to speed up your laravel package development.
This package was not inspired but highly influenced by spatie/lravel-package-tools 😉
Installation
To install this package you can run the following.
In order to use it in a package you should add it as a dependency in your composer.json
file.
Features
- Automatically detect resources provided by your package 🔍
- Can handle and autodetect configuration
- Can handle and autodetect migrations
- Can handle and autodetect translations
- Can handle and autodetect views
- Can handle artisan commands
- Can handle services
- Can handle and autodetect graphql schema
- Can handle graphql namespaces
- Can handle route files
Usage
To use the SimpleServiceProvider
class just extend it on your ServiceProvider
.
Per default the service provider will try to detect and setup the resources provided by your package without further steps required from you. If you want or need more flexibility for your setup, read on.
Configuration
For more information check out the Package classes 🕵
Roadmap 🛣
- Autodetect commands
- Autodetect services
- Autodetect graphql namespaces
- Enable handling of multiple configuration files
- Enable handling of multiple graphql schema files