updated to latest Foundation:
This commit is contained in:
parent
d60e008a41
commit
414cf5a5c6
@ -5,14 +5,14 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "Garrett Mills",
|
||||
"email": "garrett@glmills.gq"
|
||||
"email": "glmdev@outlook.com"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"illuminate/support": "^5.2",
|
||||
"illuminate/database": "^5.2",
|
||||
"ramsey/uuid": "^3.4",
|
||||
"glmdev/foundation": "^0.0.14"
|
||||
"glmdev/foundation": "^0.0.16"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.0"
|
||||
|
39
src/FoundationMetaPackage.php
Normal file
39
src/FoundationMetaPackage.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Glmdev\Meta;
|
||||
|
||||
use Glmdev\Foundation\Contracts\FoundationPackageContract;
|
||||
|
||||
class FoundationMetaPackage implements FoundationPackageContract {
|
||||
|
||||
public function getBindName(){
|
||||
return "meta";
|
||||
}
|
||||
|
||||
public function getServiceProvider(){
|
||||
return \Glmdev\Meta\MetaServiceProvider::class;
|
||||
}
|
||||
|
||||
public function getInstance(){
|
||||
return new $this;
|
||||
}
|
||||
|
||||
public function getPublications(){
|
||||
$publications = [];
|
||||
|
||||
return $publications;
|
||||
}
|
||||
|
||||
public function getMiddleware(){
|
||||
return [];
|
||||
}
|
||||
|
||||
public function configModifies(){
|
||||
return [];
|
||||
}
|
||||
|
||||
public function configCallback( $type, array $bootstrap ){
|
||||
return $bootstrap;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user