Skip to content

Commit 7a64dbd

Browse files
committed
Add badges to README, adjust description etc
1 parent 952878b commit 7a64dbd

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
## Description
2-
A Laraval Package for use together with the [php-tmdb/api](https://github.com/php-tmdb/api) TMDB Wrapper.
1+
# Laravel Package for TMDB API Wrapper
2+
[![License](https://poser.pugx.org/php-tmdb/laravel/license.png)](https://packagist.org/packages/php-tmdb/laravel)
3+
[![Build Status](https://travis-ci.org/php-tmdb/laravel.svg)](https://travis-ci.org/php-tmdb/laravel)
4+
[![Code Coverage](https://scrutinizer-ci.com/g/php-tmdb/laravel/badges/coverage.png)](https://scrutinizer-ci.com/g/php-tmdb/laravel/)
5+
[![PHP & HHVM](https://php-eye.com/badge/php-tmdb/laravel/tested.svg)](https://php-eye.com/package/php-tmdb/laravel)
6+
7+
A Laravel package that provides easy access to the [php-tmdb/api](https://github.com/php-tmdb/api) TMDB (The Movie Database) API wrapper.
38
This package comes with a service provider that configures the `Tmdb\Client` and registers it to the IoC container.
49
Both Laravel 5 and 4 are supported.
510

11+
[![Latest Stable Version](https://poser.pugx.org/php-tmdb/laravel/v/stable.svg)](https://packagist.org/packages/php-tmdb/laravel)
12+
[![Latest Unstable Version](https://poser.pugx.org/php-tmdb/laravel/v/unstable.svg)](https://packagist.org/packages/php-tmdb/laravel)
13+
[![Dependency Status](https://www.versioneye.com/php/php-tmdb:laravel/badge?style=flat)](https://www.versioneye.com/php/php-tmdb:laravel)
14+
[![Total Downloads](https://poser.pugx.org/php-tmdb/laravel/downloads.svg)](https://packagist.org/packages/php-tmdb/laravel)
15+
616

717
## Installation
818
Install Composer
@@ -12,14 +22,20 @@ $ curl -sS https://getcomposer.org/installer | php
1222
$ sudo mv composer.phar /usr/local/bin/composer
1323
```
1424

15-
Add the following to your require block in composer.json config
25+
Add the following to your require block in `composer.json` config
1626

1727
```
1828
"php-tmdb/laravel": "~1.0"
1929
```
2030

31+
or just run the following command in your project:
32+
33+
```
34+
composer require php-tmdb/laravel
35+
```
36+
2137
## Configuration
22-
Add to your `app/config/app.php` (Laravel 4) or 'config/app.php' (Laravel 5) the service provider:
38+
Add to your `app/config/app.php` (Laravel 4) or `config/app.php` (Laravel 5) the service provider:
2339

2440
```php
2541
'providers' => array(

0 commit comments

Comments
 (0)