-
Notifications
You must be signed in to change notification settings - Fork 1
feat: stache content pipe #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
4e994a5
chore: update dependencies for better php 8.4 support
NeoIsRecursive 9128948
Add stop on failure to tests
NeoIsRecursive bc837c1
wip
NeoIsRecursive 65640cc
Remove some stuff that is specified in extended class
NeoIsRecursive 9e735f2
wip
NeoIsRecursive 1656be4
Deprecate content pipe
NeoIsRecursive c8c1f19
Do some small refactoring
NeoIsRecursive ab868c5
Merge remote-tracking branch 'origin/main' into feature/stache-conten…
NeoIsRecursive 9b8c544
Remove store that doesnt exist
NeoIsRecursive 44d10fc
Add a form submission to tests and add more test
NeoIsRecursive 5d2dddf
Fix naming of StacheContentPipe to StacheData
NeoIsRecursive c39b111
Improve the config a bit
NeoIsRecursive e3cc6ca
Fix docs to adhere to the interface
NeoIsRecursive b25e5c0
Fix nav-tree store name
NeoIsRecursive 4a582f3
Fix stache not restoring paths that doesnt exist
NeoIsRecursive 23a0c76
Update docs
NeoIsRecursive 53e80ff
Fix formatting
NeoIsRecursive 3b8fb6f
Add better test for restore
NeoIsRecursive File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,88 +1,88 @@ | ||
| { | ||
| "name": "itiden/statamic-backup", | ||
| "description": "Backup your Statamic site", | ||
| "license": "MIT", | ||
| "authors": [ | ||
| { | ||
| "name": "Neo Lejondahl", | ||
| "role": "Developer" | ||
| } | ||
| ], | ||
| "require": { | ||
| "ext-zip": "*", | ||
| "statamic/cms": "^5.0.0", | ||
| "pixelfear/composer-dist-plugin": "^0.1.6" | ||
| }, | ||
| "require-dev": { | ||
| "orchestra/testbench": "^9.0", | ||
| "pestphp/pest": "^3.0", | ||
| "pestphp/pest-plugin-laravel": "^3.0", | ||
| "carthage-software/mago": "^0.11.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Itiden\\Backup\\": "src" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Itiden\\Backup\\Tests\\": "tests", | ||
| "Workbench\\App\\": "workbench/app/", | ||
| "Workbench\\Database\\Factories\\": "workbench/database/factories/", | ||
| "Workbench\\Database\\Seeders\\": "workbench/database/seeders/" | ||
| }, | ||
| "files": [ | ||
| "tests/Helpers.php" | ||
| ] | ||
| "name": "itiden/statamic-backup", | ||
| "description": "Backup your Statamic site", | ||
| "license": "MIT", | ||
| "authors": [ | ||
| { | ||
| "name": "Neo Lejondahl", | ||
| "role": "Developer" | ||
| } | ||
| ], | ||
| "require": { | ||
| "ext-zip": "*", | ||
| "statamic/cms": "^5.0.0", | ||
| "pixelfear/composer-dist-plugin": "^0.1.6" | ||
| }, | ||
| "require-dev": { | ||
| "orchestra/testbench": "^9.0", | ||
| "pestphp/pest": "^3.0", | ||
| "pestphp/pest-plugin-laravel": "^3.0", | ||
| "carthage-software/mago": "^0.11.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Itiden\\Backup\\": "src" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Itiden\\Backup\\Tests\\": "tests", | ||
| "Workbench\\App\\": "workbench/app/", | ||
| "Workbench\\Database\\Factories\\": "workbench/database/factories/", | ||
| "Workbench\\Database\\Seeders\\": "workbench/database/seeders/" | ||
| }, | ||
| "scripts": { | ||
| "post-autoload-dump": [ | ||
| "@clear", | ||
| "@prepare" | ||
| ], | ||
| "clear": "@php vendor/bin/testbench package:purge-skeleton --ansi", | ||
| "prepare": "@php vendor/bin/testbench package:discover --ansi", | ||
| "build": "@php vendor/bin/testbench workbench:build --ansi", | ||
| "serve": [ | ||
| "Composer\\Config::disableProcessTimeout", | ||
| "@build", | ||
| "@php vendor/bin/testbench serve --ansi" | ||
| ], | ||
| "lint": [ | ||
| "@php vendor/bin/mago lint" | ||
| ], | ||
| "format": [ | ||
| "@php vendor/bin/mago format" | ||
| ], | ||
| "test": [ | ||
| "XDEBUG_MODE=coverage vendor/bin/pest --coverage" | ||
| ], | ||
| "qa": [ | ||
| "@format", | ||
| "@lint", | ||
| "@test" | ||
| ] | ||
| "files": [ | ||
| "tests/Helpers.php" | ||
| ] | ||
| }, | ||
| "scripts": { | ||
| "post-autoload-dump": [ | ||
| "@clear", | ||
| "@prepare" | ||
| ], | ||
| "clear": "@php vendor/bin/testbench package:purge-skeleton --ansi", | ||
| "prepare": "@php vendor/bin/testbench package:discover --ansi", | ||
| "build": "@php vendor/bin/testbench workbench:build --ansi", | ||
| "serve": [ | ||
| "Composer\\Config::disableProcessTimeout", | ||
| "@build", | ||
| "@php vendor/bin/testbench serve --ansi" | ||
| ], | ||
| "lint": [ | ||
| "@php vendor/bin/mago lint" | ||
| ], | ||
| "format": [ | ||
| "@php vendor/bin/mago format" | ||
| ], | ||
| "test": [ | ||
| "XDEBUG_MODE=coverage vendor/bin/pest --coverage" | ||
| ], | ||
| "qa": [ | ||
| "@format", | ||
| "@lint", | ||
| "@test" | ||
| ] | ||
| }, | ||
| "extra": { | ||
| "statamic": { | ||
| "name": "Backup", | ||
| "description": "Backup your Statamic site" | ||
| }, | ||
| "extra": { | ||
| "statamic": { | ||
| "name": "Backup", | ||
| "description": "Backup your Statamic site" | ||
| }, | ||
| "laravel": { | ||
| "providers": [ | ||
| "Itiden\\Backup\\ServiceProvider" | ||
| ] | ||
| }, | ||
| "download-dist": { | ||
| "url": "https://github.com/itiden/statamic-backup/releases/download/{$version}/dist.tar.gz", | ||
| "path": "resources/dist" | ||
| } | ||
| "laravel": { | ||
| "providers": [ | ||
| "Itiden\\Backup\\ServiceProvider" | ||
| ] | ||
| }, | ||
| "config": { | ||
| "allow-plugins": { | ||
| "pixelfear/composer-dist-plugin": true, | ||
| "pestphp/pest-plugin": true, | ||
| "carthage-software/mago": true | ||
| } | ||
| "download-dist": { | ||
| "url": "https://github.com/itiden/statamic-backup/releases/download/{$version}/dist.tar.gz", | ||
| "path": "resources/dist" | ||
| } | ||
| }, | ||
| "config": { | ||
| "allow-plugins": { | ||
| "pixelfear/composer-dist-plugin": true, | ||
| "pestphp/pest-plugin": true, | ||
| "carthage-software/mago": true | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.