-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from thathoff/enhanced-git-features
Release 5.1.0
- Loading branch information
Showing
34 changed files
with
4,319 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,29 @@ | ||
node_modules/ | ||
.DS_Store | ||
.idea/ | ||
vendor/ | ||
composer.lock | ||
yarn.lock | ||
vendor | ||
kirby | ||
|
||
# files of Composer dependencies that are not needed for the plugin | ||
# See https://getkirby.com/docs/guide/plugins/plugin-setup-composer | ||
/vendor/**/.* | ||
/vendor/**/*.json | ||
/vendor/**/*.txt | ||
/vendor/**/*.md | ||
/vendor/**/*.yml | ||
/vendor/**/*.yaml | ||
/vendor/**/*.xml | ||
/vendor/**/*.dist | ||
/vendor/**/readme.php | ||
/vendor/**/LICENSE | ||
/vendor/**/COPYING | ||
/vendor/**/VERSION | ||
/vendor/**/Makefile | ||
/vendor/**/phpstan.neon | ||
/vendor/**/docs/* | ||
/vendor/**/example/* | ||
/vendor/**/examples/* | ||
/vendor/**/test/* | ||
/vendor/**/tests/* | ||
/vendor/**/php4/* | ||
/vendor/getkirby/composer-installer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,15 @@ | |
"description": "Plugin to track changes to content in a git repository.", | ||
"type": "kirby-plugin", | ||
"license": "MIT", | ||
"version": "5.1.0", | ||
"authors": [ | ||
{ | ||
"name": "Markus Denhoff", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "reinorange GmbH", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"support": { | ||
|
@@ -15,15 +20,24 @@ | |
}, | ||
"require": { | ||
"czproject/git-php": "^4.0.1", | ||
"getkirby/cms": "^3.6.0", | ||
"getkirby/composer-installer": "^1.1" | ||
}, | ||
"require-dev": { | ||
"getkirby/cms": "^3.6.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Thathoff\\GitContent\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"installer-name": "git-content" | ||
"installer-name": "git-content", | ||
"kirby-cms-path": false | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"allow-plugins": { | ||
"getkirby/composer-installer": true | ||
} | ||
} | ||
} |
Oops, something went wrong.