garf / laravel-pinger
Ping search engines about website updates
Installs: 19 873
Dependents: 0
Suggesters: 0
Security: 0
Stars: 24
Watchers: 3
Forks: 7
Open Issues: 1
Requires
- php: >=5.4.0
- illuminate/support: >=4.2
README
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
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.