Skip to content

Commit

Permalink
Merge pull request #28 from bolt/default-site-bundle
Browse files Browse the repository at this point in the history
Default site bundle
  • Loading branch information
bobdenotter committed Oct 18, 2017
2 parents c26cbd9 + 35de391 commit 1a317bd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"nut extensions:setup"
]
},
"autoload": {
"psr-4": {
"Bundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-3.4" : "3.4.x-dev"
Expand Down
20 changes: 20 additions & 0 deletions src/Site/CustomisationExtension.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

namespace Bundle\Site;

use Bolt\Extension\SimpleExtension;

/**
* Site bundle extension loader.
*
* This is the base bundle you can use to further customise Bolt for your
* specific site.
*
* It is perfectly safe to remove this bundle, just remember to remove the
* entry from your .bolt.yml or .bolt.php file.
*
* For more information on building bundles see https://docs.bolt.cm/extensions
*/
class CustomisationExtension extends SimpleExtension
{
}

0 comments on commit 1a317bd

Please sign in to comment.