Tuesday, January 13, 2015

Laravel Tip: API Quick reference with Liona

If you've never visited the #Laravel IRC channel, today might be the day to stop by. Besides offering authoritative answers to Laravel questions, the channel also offers instant access to all the Laravel API documentation. In this article, I show you the secret command to find all the Laravel API documentation.


An oft-overlooked gem in the Laravel documentation arena is #laravel. (I'm old enough to remember "hash-tag laravel" meaning IRC and only IRC, and that's what I mean here. Anyway.) When you join that channel, you'll find lively Laravel discussions. You'll also find Liona.

Liona is a bot that listens for instructions. One instruction she answers is API documentation look-up. To return current Laravel 4.2 documentation, say:
liona show docs for api support manager

And Liona will give you a link right to the desired documentation. This is so much faster than Google, because Google doesn't always get it right. Sometimes you might get, for example, a blog article and you have to hunt for the actual API documentation. Sometimes Google gives you version 4.1 when you wanted 4.2.

If you want Laravel 5 documentation, Liona can help with that as well:
liona show docs for api 5 contracts auth

Thanks to machuga, lagbox, and github for producing such a wonderful Laravel helper!

Related Posts:

  • Laravel Tip: API Quick reference with LionaIf you've never visited the #Laravel IRC channel, today might be the day to stop by. Besides offering authoritative answers to Laravel questions, the channel also offers instant access to all the Laravel API documentation. In… Read More
  • App::error, Accept:application/json, and app.debug = falseApplication crashed? Client only accepts application/json? Unless your Laravel 4 application is in debug mode, you're out of luck: the client receives text/html! I've been working with a mobile app developer recently to flu… Read More
  • Pudgy controllers? Try the Route diet! Nestled between user and controller, the routing layer is a perfect home for common filtering and access-control oriented code. But you have to know your framework's routing capabilities to exploit this location. In this a… Read More
  • Zero to PSR-4 in 60 seconds By and large PSR-0 and PSR-4 are identical. Comparing and contrasting the two doesn't illuminate the crucial, but small, surface area where they differ.  Sadly, most documentation takes this compare and contrast approac… Read More

0 comments:

Post a Comment

Share your thoughts!