diff --git a/.gitignore b/.gitignore index 57872d0..42cd73d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vendor/ +/vendor/ \ No newline at end of file diff --git a/composer.json b/composer.json index 68ee2d2..e525f5c 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,11 @@ "name": "virtubrick/grid", "description": "Helper library for communicating with the Roblox Grid Service.", "type": "library", + "autoload": { + "psr-4": { + "Virtubrick\\Grid\\": "src/" + } + }, "license": "Apache-2.0", "authors": [ { diff --git a/GridService.php b/src/GridService.php similarity index 100% rename from GridService.php rename to src/GridService.php diff --git a/Rcc/Job.php b/src/Rcc/Job.php similarity index 100% rename from Rcc/Job.php rename to src/Rcc/Job.php diff --git a/Rcc/LuaScript.php b/src/Rcc/LuaScript.php similarity index 100% rename from Rcc/LuaScript.php rename to src/Rcc/LuaScript.php diff --git a/Resources/RCCService.wsdl b/src/Resources/RCCService.wsdl similarity index 100% rename from Resources/RCCService.wsdl rename to src/Resources/RCCService.wsdl diff --git a/Traits/GridSerializerTrait.php b/src/Traits/GridSerializerTrait.php similarity index 100% rename from Traits/GridSerializerTrait.php rename to src/Traits/GridSerializerTrait.php