diff --git a/composer.json b/composer.json index e40c63e..4f19098 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,12 @@ { "name": "caffeinated/themes", "description": "Laravel Themes", - "keywords": ["themes", "laravel", "caffeinated", "blade"], + "keywords": [ + "themes", + "laravel", + "caffeinated", + "blade" + ], "license": "MIT", "authors": [ { @@ -13,7 +18,7 @@ "prefer-stable": true, "require": { "php": "^7.3|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0" + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0" }, "autoload": { "files": [ diff --git a/src/Concerns/GetsManifest.php b/src/Concerns/GetsManifest.php index 2bdab3c..becf9d8 100644 --- a/src/Concerns/GetsManifest.php +++ b/src/Concerns/GetsManifest.php @@ -22,7 +22,7 @@ protected function getDirectory() protected function getManifest() { - $moduleJsonPath = realpath($this->getDirectory() . '/../../theme.json'); + $moduleJsonPath = realpath($this->getDirectory() . '/../theme.json'); return json_decode(File::get($moduleJsonPath), true); }