mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Moved files into server namespace/folder and updated docblock copyright statements
This commit is contained in:
@@ -39,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": {
|
"psr-0": {
|
||||||
"League\\OAuth2": "src/"
|
"League\\OAuth2\\Server": "src/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"suggest": {}
|
"suggest": {}
|
||||||
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Authorization Server
|
* OAuth 2.0 Authorization Server
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2;
|
namespace League\OAuth2;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Client Exception
|
* OAuth 2.0 Client Exception
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Exception;
|
namespace League\OAuth2\Exception;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Invalid Access Token Exception
|
* OAuth 2.0 Invalid Access Token Exception
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Exception;
|
namespace League\OAuth2\Exception;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Invalid Grant Type Exception
|
* OAuth 2.0 Invalid Grant Type Exception
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Exception;
|
namespace League\OAuth2\Exception;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Base Exception
|
* OAuth 2.0 Base Exception
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Exception;
|
namespace League\OAuth2\Exception;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Auth code grant
|
* OAuth 2.0 Auth code grant
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Client credentials grant
|
* OAuth 2.0 Client credentials grant
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Grant type interface
|
* OAuth 2.0 Grant type interface
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 implicit grant
|
* OAuth 2.0 implicit grant
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Password grant
|
* OAuth 2.0 Password grant
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Refresh token grant
|
* OAuth 2.0 Refresh token grant
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Grant;
|
namespace League\OAuth2\Grant;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Resource Server
|
* OAuth 2.0 Resource Server
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2;
|
namespace League\OAuth2;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Client storage interface
|
* OAuth 2.0 Client storage interface
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Storage;
|
namespace League\OAuth2\Storage;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Scope storage interface
|
* OAuth 2.0 Scope storage interface
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Storage;
|
namespace League\OAuth2\Storage;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Session storage interface
|
* OAuth 2.0 Session storage interface
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Storage;
|
namespace League\OAuth2\Storage;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Redirect URI generator
|
* OAuth 2.0 Redirect URI generator
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Util;
|
namespace League\OAuth2\Util;
|
@@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* OAuth 2.0 Secure key generator
|
* OAuth 2.0 Secure key generator
|
||||||
*
|
*
|
||||||
* @package lncd/oauth2
|
* @package php-loep/oauth2-server
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
* @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/
|
* @license http://mit-license.org/
|
||||||
* @link http://github.com/lncd/oauth2
|
* @link http://github.com/php-leop/oauth2-server
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace League\OAuth2\Util;
|
namespace League\OAuth2\Util;
|
Reference in New Issue
Block a user