Moved files into server namespace/folder and updated docblock copyright statements

This commit is contained in:
Alex Bilbie 2013-05-08 11:29:24 -07:00
parent 2d6cc3c98e
commit 5524e9b9c8
24 changed files with 52 additions and 52 deletions

View File

@ -39,7 +39,7 @@
},
"autoload": {
"psr-0": {
"League\\OAuth2": "src/"
"League\\OAuth2\\Server": "src/"
}
},
"suggest": {}

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Authorization Server
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Client Exception
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Exception;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Invalid Access Token Exception
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Exception;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Invalid Grant Type Exception
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Exception;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Base Exception
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Exception;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Auth code grant
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Client credentials grant
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Grant type interface
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 implicit grant
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Password grant
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Refresh token grant
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Grant;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Resource Server
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Client storage interface
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Storage;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Scope storage interface
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Storage;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Session storage interface
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Storage;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Redirect URI generator
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Util;

View File

@ -2,11 +2,11 @@
/**
* OAuth 2.0 Secure key generator
*
* @package lncd/oauth2
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
* @link http://github.com/php-leop/oauth2-server
*/
namespace League\OAuth2\Util;