Skip to content

garf/laravel-pinger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Weblogs Pinger

Software License Laravel Version

Weblog system blogs pinger for Laravel 5.

Easy way to notify search engines about your new or updated posts in blog.

Install

Add

"garf/laravel-pinger": "2.*"

to your composer.json file into require section.

Then type in console

$ composer update

When update completed, add to your config/app.conf file to providers section

'providers' => [
    // ...
    Garf\LaravelPinger\LaravelPingerServiceProvider::class,
]

If you want to use Pinger facade, add to same file at the aliases section

'aliases' => [
    // ...
  'Pinger' => Garf\LaravelPinger\PingerFacade::class,
]

Publish with artsian

php artisan vendor:publish

Publishes a pinger.php file to config directory. Add and remove all your ping sites in this file. Be sure to review the ping responses from the ping sites you add because there are many ping sites and do not all provide a uniform response. Some may require additional parameters. Some may stop working.

Usage

Send ping to services

Sending to all services at once

Pinger::pingAll('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Send pings to separate services

Google

Pinger::pingGoogle('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Yandex

Pinger::pingYandex('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Yahoo

Pinger::pingYahoo('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Feedburner

Pinger::pingFeedburner('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Weblogs

Pinger::pingWeblogs('Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

PingOMatic

    Pinger::pingPingOMatic(
        'Title of post', 
        'http://url.of/your-post', 
        'http://url.of/your-rss(optional)', 
        [
            'additional' => 'params',
            'to' => 'send',
        ]);

Ping any other service

Pinger::ping('http://url.of/service', 'Title of post', 'http://url.of/your-post', 'http://url.of/your-rss(optional)');

Further plans

  • clean the code
  • create driver system for different services

Contributions

Contributions are highly appreciated.

Send your pull requests to master branch.

License

The MIT License (MIT). Please see License File for more information.

About

Ping search engines about website updates (weblog) in Laravel 5

Resources

License

Stars

Watchers

Forks

Packages

No packages published