garf / laravel-pinger by garf

Ping search engines about website updates
18,209
23
3
Package Data
Maintainer Username: garf
Maintainer Contact: garipov.dinar@gmail.com (Dinar Garipov)
Package Create Date: 2015-07-27
Package Last Update: 2018-11-15
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:10:17
Package Statistics
Total Downloads: 18,209
Monthly Downloads: 379
Daily Downloads: 31
Total Stars: 23
Total Watchers: 3
Total Forks: 7
Total Open Issues: 2

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.