Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenckens committed Oct 8, 2017
1 parent c9809ac commit ee2b609
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
48 changes: 48 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit ee2b609

Please sign in to comment.