Skip to content

Commit 7925190

Browse files
committed
Updated Readme Badges
1 parent 6e8ec41 commit 7925190

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# PHP OAuth 2.0 Server for Laravel
22

3-
[![Latest Stable Version](https://poser.pugx.org/lucadegasperi/oauth2-server-laravel/v/stable.png)](https://packagist.org/packages/lucadegasperi/oauth2-server-laravel) [![Build Status](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/badges/build.png?b=rewrite)](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/build-status/rewrite) [![Code Coverage](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/badges/coverage.png?b=rewrite)](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/?branch=rewrite) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/badges/quality-score.png?b=rewrite)](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/?branch=rewrite)
3+
[![Latest Version](http://img.shields.io/packagist/v/lucadegasperi/oauth2-server-laravel.svg?style=flat-square)](https://github.com/lucadegasperi/oauth2-server-laravel/releases)
4+
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
5+
[![Build Status](https://img.shields.io/travis/lucadegasperi/oauth2-server-laravel/master.svg?style=flat-square)](https://travis-ci.org/lucadegasperi/oauth2-server-laravel)
6+
[![Coverage Status](https://img.shields.io/scrutinizer/coverage/g/lucadegasperi/oauth2-server-laravel.svg?style=flat-square)](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel/code-structure)
7+
[![Quality Score](https://img.shields.io/scrutinizer/g/lucadegasperi/oauth2-server-laravel.svg?style=flat-square)](https://scrutinizer-ci.com/g/lucadegasperi/oauth2-server-laravel)
8+
[![Total Downloads](https://img.shields.io/packagist/dt/lucadegasperi/oauth2-server-laravel.svg?style=flat-square)](https://packagist.org/packages/lucadegasperi/oauth2-server-laravel)
49

510
[OAuth 2.0](http://tools.ietf.org/wg/oauth/draft-ietf-oauth-v2/) authorization server and resource server for the Laravel framework. Standard compliant thanks to the amazing work by [The League of Extraordinary Packages](http://www.thephpleague.com) OAuth 2.0 authorization server and resource server.
611

src/Console/OAuthControllerCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ public function fire()
6666
$this->info('OAuth Server controller controller created successfully!');
6767

6868
$this->comment("Routes:");
69-
$this->comment("Route::post('oauth/access_token', 'OAuthController@accessToken');");
70-
$this->comment("Route::post('oauth/access_token', 'OAuthController@accessToken');");
69+
$this->comment("Route::post('oauth/access_token', 'OAuthController@postAccessToken');");
7170
}
7271
else {
7372
$this->error('OAuth Server controller already exists!');

0 commit comments

Comments
 (0)