Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
.idea
.vscode
/vendor
node_modules
.DS_Store
.phpunit.result.cache
.phpunit.cache
composer.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wikilinks ![Statamic v5](https://img.shields.io/badge/statamic-v5-blue.svg?style=flat-square)


Wikilinks is an add-on for Statamic 5.x that enables Wiki style [links] in the content of your site.
Wikilinks is an add-on for Statamic that enables Wiki style [links] in the content of your site.

It provides a simple modifier that seeks out any content wrapped in [braces] and automatically links it to other entries or pages with the same title (or other field of your choosing).

Expand Down
10 changes: 1 addition & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,8 @@
"Statamic\\Wikilinks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Statamic\\Wikilinks\\Tests\\": "tests"
}
},
"require": {
"statamic/cms": "^5.0"
},
"require-dev": {
"orchestra/testbench": "^9.0"
"statamic/cms": "^5.0 || ^6.0"
},
"config": {
"allow-plugins": {
Expand Down
5 changes: 0 additions & 5 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@

class ServiceProvider extends AddonServiceProvider
{
public function bootAddon()
{
//
}

protected $modifiers = [
WikilinksModifier::class,
];
Expand Down