diff options
author | tailor <cygnus@janrain.com> | 2006-02-13 22:48:46 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-02-13 22:48:46 +0000 |
commit | 5dac3b5e74664152dc45cd875bd478b0d8821509 (patch) | |
tree | 3cc8329a6726d534793ea62f866c844ec9978372 | |
parent | 2aa40afd0ee71228367619275d0d82f45e8fefa4 (diff) | |
download | php-openid-5dac3b5e74664152dc45cd875bd478b0d8821509.zip php-openid-5dac3b5e74664152dc45cd875bd478b0d8821509.tar.gz php-openid-5dac3b5e74664152dc45cd875bd478b0d8821509.tar.bz2 |
[project @ Added Auth_OpenID class module.]
-rw-r--r-- | Auth/OpenID.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Auth/OpenID.php b/Auth/OpenID.php new file mode 100644 index 0000000..b94f43c --- /dev/null +++ b/Auth/OpenID.php @@ -0,0 +1,24 @@ +<?php + +/** + * This is the PHP OpenID library by JanRain, Inc. + * + * This module contains core utility functionality used by the + * library. See Consumer.php and Server.php for the consumer and + * server implementations. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + +class Auth_OpenID { + +} + +?>
\ No newline at end of file |