Skip to content

Commit

Permalink
Fix YouTube branding in README (#173)
Browse files Browse the repository at this point in the history
Note: Your facade is currently `Youtube` and to be technically correct you'd probably want to change this to `YouTube`. But not required.

Co-authored-by: Mustapha Alaouy <[email protected]>
  • Loading branch information
LorenzoSapora and alaouy authored Jul 11, 2024
1 parent 72a2a6f commit e10f74d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Youtube
YouTube
=========

[![Youtube Tests](https://github.com/alaouy/Youtube/actions/workflows/tests.yml/badge.svg)](https://github.com/alaouy/Youtube/actions/workflows/tests.yml) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/alaouym)
[![YouTube Tests](https://github.com/alaouy/YouTube/actions/workflows/tests.yml/badge.svg)](https://github.com/alaouy/YouTube/actions/workflows/tests.yml) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/malaouy)

Laravel PHP Facade/Wrapper for the Youtube Data API v3 ( Non-OAuth )
Laravel PHP Facade/Wrapper for the YouTube Data API v3 ( Non-OAuth )

## Requirements

- PHP 7.0 or higher
- Laravel 5.1 or higher
- API key from [Google Console](https://console.developers.google.com)

Looking for Youtube Package for either of these: PHP 5, Laravel 5.0, Laravel 4? Visit the [`php5-branch`](https://github.com/alaouy/Youtube/tree/php5)
Looking for YouTube Package for either of these: PHP 5, Laravel 5.0, Laravel 4? Visit the [`php5-branch`](https://github.com/alaouy/YouTube/tree/php5)

## Installation

Expand All @@ -27,7 +27,7 @@ In `/config/app.php` add YoutubeServiceProvider (Laravel < 5.5):
Alaouy\Youtube\YoutubeServiceProvider::class,
```

Do not forget to add also Youtube facade there (Laravel < 5.5):
Do not forget to add also YouTube facade there (Laravel < 5.5):
```php
'Youtube' => Alaouy\Youtube\Facades\Youtube::class,
```
Expand All @@ -37,7 +37,7 @@ Publish config settings:
$ php artisan vendor:publish --provider="Alaouy\Youtube\YoutubeServiceProvider"
```

Set your Youtube API key in the file:
Set your YouTube API key in the file:

```shell
/config/youtube.php
Expand Down Expand Up @@ -231,8 +231,8 @@ The returned JSON is decoded as PHP objects (not Array).
Please read the ["Reference" section](https://developers.google.com/youtube/v3/docs/) of the Official API doc.


## Youtube Data API v3
- [Youtube Data API v3 Doc](https://developers.google.com/youtube/v3/)
## YouTube Data API v3
- [YouTube Data API v3 Doc](https://developers.google.com/youtube/v3/)
- [Obtain API key from Google API Console](https://console.developers.google.com)

## Donation
Expand Down

0 comments on commit e10f74d

Please sign in to comment.