diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8fc6af1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# CRAFT ENVIRONMENT +.env.php +.env.sh +.env + +# COMPOSER +/vendor +composer.lock + +# BUILD FILES +/bower_components/* +/node_modules/* +/build/* +/yarn-error.log + +# MISC FILES +.cache +.DS_Store +.idea +.project +.settings +*.esproj +*.sublime-workspace +*.sublime-project +*.tmproj +*.tmproject +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +config.codekit3 +prepros-6.config \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..26accdc --- /dev/null +++ b/composer.json @@ -0,0 +1,48 @@ +{ + "name": "studioespresso/craft-dumper", + "description": "Bringing larapack/dd to Craft 3", + "type": "craft-plugin", + "version": "1.0.0", + "keywords": [ + "craft", + "cms", + "craftcms", + "craft-plugin", + "dumper" + ], + "support": { + "docs": "https://github.com/studioespresso/craft3-dumper/blob/master/README.md", + "issues": "https://github.com/studioespresso/craft3-dumper/issues" + }, + "license": "MIT", + "authors": [ + { + "name": "Studio Espresso", + "homepage": "https://studioespresso.co" + } + ], + "require": { + "craftcms/cms": "~3.0.0-beta.29", + "larapack/dd": ">=1.1" + }, + "repositories": [ + { + "type": "composer", + "url": "https://asset-packagist.org" + } + ], + "autoload": { + "psr-4": { + "studioespresso\\craftdumper\\": "src/" + } + }, + "extra": { + "name": "Dumper", + "handle": "dumper", + "schemaVersion": "1.0.0", + "hasCpSettings": false, + "hasCpSection": false, + "changelogUrl": "https://raw.githubusercontent.com/studioespresso/craft3-dumper/master/CHANGELOG.md", + "class": "studioespresso\\craftdumper\\CraftDumper" + } +}