christianvizarra / laravel-service-provider by christianvizarra

Clone from draperstudio DRY Service Provider for Laravel 5 Packages
34
0
1
Package Data
Maintainer Username: christianvizarra
Maintainer Contact: hello@draperstudio.tech (DraperStudio)
Package Create Date: 2016-10-19
Package Last Update: 2016-10-19
Language: PHP
License: MIT
Last Refreshed: 2024-05-16 15:05:50
Package Statistics
Total Downloads: 34
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 1
Total Open Issues: 0

Laravel Service Provider

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Install

Via Composer

$ composer require christianvizarra/laravel-service-provider

Usage

<?php

namespace Vendor\Package;

class ServiceProvider extends \DraperStudio\ServiceProvider\ServiceProvider
{
    public function boot()
    {
        $this->publishMigrations()
        $this->publishConfig()
        $this->publishViews()
        $this->publishAssets()
        $this->loadViews()
        $this->loadTranslations()
        $this->mergeConfig(');
    }
}

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email hello@draperstudio.tech instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

=======

laravel-service-provider

forked of draperstudio/laravel-service-provider