nicosomb / wallabag-webarchive-bundle

Plugin for wallabag: Download web.archive.org version if we have 404.
MIT License
5 stars 0 forks source link
symfony-bundle wallabag wallabag-plugin

Plugin for wallabag: Download web.archive.org version if we have 404

This bundle allows you to find snapshot in web.archive.org website

Requirements

Installation

Download the bundle

composer require nicosomb/wallabag-webarchive-bundle

Enable the bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Nicosomb\WallabagWebarchiveBundle\NicosombWallabagWebarchiveBundle(),
        );

        // ...
    }

    // ...
}

Configure your application

# app/config/config.yml

nicosomb_wallabag_webarchive:
    enabled: true