Create a basic ServiceProvider
This commit is contained in:
parent
adc78bc87f
commit
e490e4284d
2 changed files with 29 additions and 1 deletions
|
@ -10,10 +10,19 @@
|
|||
"email": "info@millionsmissing.fr"
|
||||
}
|
||||
],
|
||||
"require": {},
|
||||
"require": {
|
||||
"laravel/framework": "v5.5.40"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MMF\\FreescoutRestrictedCustomers\\": "src"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"MMF\\FreescoutRestrictedCustomers\\FreescoutRestrictedCustomersServiceProvider"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
19
src/FreescoutRestrictedCustomersServiceProvider.php
Normal file
19
src/FreescoutRestrictedCustomersServiceProvider.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/*
|
||||
SPDX-License-Identifier: AGPL
|
||||
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
||||
*/
|
||||
|
||||
namespace MMF\FreescoutRestrictedCustomers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class FreescoutRestrictedCustomersServiceProvider extends ServiceProvider {
|
||||
public function register() {
|
||||
//
|
||||
}
|
||||
|
||||
public function boot() {
|
||||
//
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue