PHPackages                             vi-kon/laravel-wiki - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. vi-kon/laravel-wiki

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

vi-kon/laravel-wiki
===================

Wiki Engine for Laravel 5.1, based on Markdown syntax

241609[4 issues](https://github.com/vi-kon/laravel-wiki/issues)[1 PRs](https://github.com/vi-kon/laravel-wiki/pulls)HTML

Since May 26Pushed 9y ago3 watchersCompare

[ Source](https://github.com/vi-kon/laravel-wiki)[ Packagist](https://packagist.org/packages/vi-kon/laravel-wiki)[ RSS](/packages/vi-kon-laravel-wiki/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Wiki for Laravel 5.1
====================

[](#wiki-for-laravel-51)

This is wiki for **Laravel 5.1**.

Table of content
----------------

[](#table-of-content)

- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)

---

[Back to top](#wiki-for-laravel-5)

Features
--------

[](#features)

- popular markdown syntax
- page history
- configurable

Installation
------------

[](#installation)

1. Create your laravel project as usual
2. Via `composer` (make sure to allow dev stability): `composer require vi-kon/laravel-wiki`
3. In your `app.php` add the entry `ViKon\Wiki\WikiServiceProvider::class,` to the providers array
4. Call `php artisan vendor:publish` command (this will publish every vendor assets)
5. Call `php artisan migrate` command
6. Call `php artisan vi-kon:wiki:install` command (This will seed database with required entries)
7. Install `npm` and `bower` packages to publish public assets

Now browse to the path `/wiki` of your project.

Add following lines `providers` array found in `app.php` file:

```
// Wiki
\ViKon\Wiki\WikiServiceProvider::class,
```

Required npm packages (`package.json` in project's root directory):

```
{
    "private"     : true,
    "dependencies": {
        "bower"          : "^1.7.9",
        "gulp"           : "^3.9.1",
        "gulp-clean"     : "^0.3.2",
        "gulp-concat"    : "^2.6.0",
        "gulp-debug"     : "^2.1.2",
        "gulp-less"      : "^3.0.5",
        "gulp-livereload": "^3.8.1",
        "gulp-minify-css": "^1.2.4",
        "gulp-notify"    : "^2.2.0",
        "gulp-rename"    : "^1.2.2",
        "gulp-rev"       : "^7.0.0",
        "gulp-sourcemaps": "^1.6.0",
        "gulp-uglify"    : "^1.5.3",
        "less"           : "^2.6.1",
        "rev-del"        : "^1.0.5",
        "underscore"     : "^1.8.3"
    }
}
```

Required bower packages (`bower.json` in project's root directory):

```
{
    "name"        : "laravel-5.2-wiki",
    "version"     : "1.0.0",
    "description" : "Wiki Engine",
    "moduleType"  : [
        "node"
    ],
    "authors"     : [
        "Kovács Vince"
    ],
    "license"     : "MIT",
    "ignore"      : [
        "**/.*",
        "node_modules",
        "bower_components",
        "test",
        "tests"
    ],
    "dependencies": {
        "bootstrap"     : "^3.3.6",
        "jquery"        : "~2.1.4",
        "jquery-timeago": "~1.4.3",
        "codemirror"    : "~5.10.0"
    }
}
```

Gulp tasks for publishing assets (`guplfile.js` in project's root directory):

```
var path       = require('path');
var Gulper     = require('./vendor/vi-kon/laravel-support/src/resources/assets/Gulper');
var WikiGulper = require('./vendor/vi-kon/laravel-wiki/src/resources/assets/WikiGulper');

var gulper = new Gulper();

var __bower_components = path.join(__dirname, 'bower_components');

gulper
    .buildPath(path.join(__dirname, 'public', 'build'))
    .setBowerComponentsDirname(__bower_components)
    .registerLessInclude(__bower_components)
    .registerCssTask([
                         path.join(__bower_components, 'bootstrap', 'less', 'bootstrap.less'),
                         path.join(__bower_components, 'codemirror', 'lib', 'codemirror.css')
                     ], path.join('css', 'main.css'))
    .registerJsTask([
                        path.join(__bower_components, 'jquery', 'dist', 'jquery.js'),
                        path.join(__bower_components, 'jquery-timeago', 'jquery.timeago.js'),
                        path.join(__bower_components, 'bootstrap', 'dist', 'js', 'bootstrap.js'),
                        path.join(__bower_components, 'codemirror', 'lib', 'codemirror.js'),
                        path.join(__bower_components, 'codemirror', 'mode', 'markdown', 'markdown.js')
                    ], path.join('js', 'main.js'));

new WikiGulper(gulper);

gulper.registerTasks();
```

---

[Back to top](#wiki-for-laravel-5)

License
-------

[](#license)

This package is licensed under the MIT License

---

[Back to top](#wiki-for-laravel-5)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 99.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/97ac6badd847093e56369390bf36ddbb8740e10a8a495b339c2adb78e7345663?d=identicon)[vincekovacs](/maintainers/vincekovacs)

---

Top Contributors

[![vincekovacs](https://avatars.githubusercontent.com/u/1031595?v=4)](https://github.com/vincekovacs "vincekovacs (108 commits)")[![amenk](https://avatars.githubusercontent.com/u/1087128?v=4)](https://github.com/amenk "amenk (1 commits)")

### Embed Badge

![Health badge](/badges/vi-kon-laravel-wiki/health.svg)

```
[![Health](https://phpackages.com/badges/vi-kon-laravel-wiki/health.svg)](https://phpackages.com/packages/vi-kon-laravel-wiki)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
