ampluso/pinger-bundle

PingerBundle (bundle for Symfony2) is a service to update different search engines that your blog or website has updated.

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 175

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Type:symfony-bundle

pkg:composer/ampluso/pinger-bundle

v0.0.1 2015-06-03 15:15 UTC

This package is not auto-updated.

Last update: 2024-01-20 10:14:48 UTC


README

PingerBundle (bundle for Symfony2) is a service to update different search engines that your blog or website has updated.

Requirements

  • PHP 5.3+
  • Symfony2

Installation

Composer

The preferred way to install this bundle is to rely on Composer.

Method 1

Simply run assuming you have installed composer.phar or composer binary:

$ composer require ampluso/pinger-bundle dev-master

Method 2

  1. Add the following lines in your composer.json:
{
  "require": {
    "ampluso/pinger-bundle": "dev-master"
  }
}
  1. Run the composer to download the bundle
$ php composer.phar update ampluso/pinger-bundle

Add this bundle to your application's kernel

// app/ApplicationKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Ampluso\PingerBundle\PingerBundle(),
        // ...
    );
}

Authors

Marcin Chyłek - marcin@chylek.pl

License

PingerBundle is licensed under the MIT License - see the LICENSE file for details