From e78b413a2fe8279bff61b2d35a5868be4a9cef37 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Sat, 25 Jun 2016 13:23:24 -0500 Subject: [PATCH 1/5] updated namespaces --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1122ddb..5e6568f 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ }, "autoload": { "psr-4": { - "App\\": "../../../app/", + "AppRoot\\": "../../../app/", "Glmdev\\Meta\\": "src/" } } From 720215447b07553cc2d36a62dc95494129f98de3 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Sat, 25 Jun 2016 13:37:18 -0500 Subject: [PATCH 2/5] updated versioning --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5e6568f..1d390ad 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "ramsey/uuid": "^3.2", - "glmdev/foundation": "^0.0.004" + "glmdev/foundation": "^0.0.006" }, "autoload": { "psr-4": { From ab544f737262c80140a9923bb361d7ca4fa079fc Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Sat, 25 Jun 2016 14:16:15 -0500 Subject: [PATCH 3/5] version syncing --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1d390ad..3ab8efa 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "ramsey/uuid": "^3.2", - "glmdev/foundation": "^0.0.006" + "glmdev/foundation": "^0.0.9" }, "autoload": { "psr-4": { From 92e17bae345db758befa10153c19032180fa673b Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Sat, 25 Jun 2016 14:42:34 -0500 Subject: [PATCH 4/5] rm uppers --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3ab8efa..c161f74 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "ramsey/uuid": "^3.2", - "glmdev/foundation": "^0.0.9" + "glmdev/foundation": "*" }, "autoload": { "psr-4": { From 6d6af4faf9329994ae518a5d4296195af18d3ab9 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Sat, 25 Jun 2016 15:48:44 -0500 Subject: [PATCH 5/5] updated create method --- src/Meta.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Meta.php b/src/Meta.php index 66fa4e6..ce772d4 100644 --- a/src/Meta.php +++ b/src/Meta.php @@ -73,4 +73,11 @@ class Meta extends Model implements FoundationModel public static function route(){} + public static function create( array $args ){ + $args['meta'] = serialize([]); + $args['uuid'] = ''; + + return parent::create($args); + } + } \ No newline at end of file