-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): bump version to 1.1.1
refactor: remove autoload requirement and include Group class in fieldMethods
- Loading branch information
1 parent
d75d484
commit 4d120bf
Showing
5 changed files
with
6 additions
and
6 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
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
<?php | ||
require_once __DIR__ . '/vendor/autoload.php'; | ||
|
||
use Kirby\Cms\App as Kirby; | ||
|
||
Kirby::plugin('philippoehrlein/kirby-navigation-groups', [ | ||
'fields' => require __DIR__ . '/config/fields.php', | ||
'api' => require __DIR__ . '/config/api.php', | ||
'translations' => require __DIR__ . '/config/translations.php', | ||
'fieldMethods' => require __DIR__ . '/config/fieldMethods.php', | ||
'version' => '1.1.0' | ||
'version' => '1.1.1' | ||
]); |
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,7 +1,7 @@ | ||
{ | ||
"type": "module", | ||
"name": "kirby-navigation-groups", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"author": { | ||
"name": "Philipp Oehrlein", | ||
"email": "[email protected]" | ||
|