updated to latest Foundation:

master
Garrett Mills 8 years ago
parent d60e008a41
commit 414cf5a5c6

@ -5,14 +5,14 @@
"authors": [ "authors": [
{ {
"name": "Garrett Mills", "name": "Garrett Mills",
"email": "garrett@glmills.gq" "email": "glmdev@outlook.com"
} }
], ],
"require": { "require": {
"illuminate/support": "^5.2", "illuminate/support": "^5.2",
"illuminate/database": "^5.2", "illuminate/database": "^5.2",
"ramsey/uuid": "^3.4", "ramsey/uuid": "^3.4",
"glmdev/foundation": "^0.0.14" "glmdev/foundation": "^0.0.16"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~4.0" "phpunit/phpunit": "~4.0"

@ -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…
Cancel
Save