diff --git a/src/Schema.php b/src/Schema/Schema.php similarity index 100% rename from src/Schema.php rename to src/Schema/Schema.php diff --git a/src/Schema/composer.json b/src/Schema/composer.json new file mode 100644 index 0000000..363d2b1 --- /dev/null +++ b/src/Schema/composer.json @@ -0,0 +1,22 @@ +{ + "name": "twister/schema", + "type": "library", + "description": "Twister automated Schema builder", + "keywords": ["schema"], + "homepage": "https://github.com/twister-php/twister", + "license": "MIT", + "authors": [ + { + "name": "Trevor Herselman", + "email": "therselman@gmail.com" + } + ], + "require": { + "php": ">=7.0" + }, + "autoload": { + "files": [ "Schema.php" ], + "psr-4": { "Twister\\Schema\\": "" } + }, + "minimum-stability": "dev" +}