https://github.com/daniel15/kohana-membership
OpenID / Facebook / Twitter login module for Kohana. Example at http://stuff.dan.cx/php/login/
https://github.com/daniel15/kohana-membership
Last synced: about 1 year ago
JSON representation
OpenID / Facebook / Twitter login module for Kohana. Example at http://stuff.dan.cx/php/login/
- Host: GitHub
- URL: https://github.com/daniel15/kohana-membership
- Owner: Daniel15
- Created: 2011-01-16T03:12:16.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2012-07-11T01:20:41.000Z (almost 14 years ago)
- Last Synced: 2025-03-30T11:02:47.346Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 765 KB
- Stars: 49
- Watchers: 9
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kohana-Membership
===================
By [Daniel15](http://dan.cx/)
This is a Kohana module that lets you log via OpenID, Twitter or Facebook. It includes a UI for logging in and connecting multiple identities to the one account.
Installation
-------------
1. Copy css, img and js directories to /css/membership/, /img/membership/ and /js/membership/. You can use symlinks instead
2. Create application/config/membership.php with the following:
array(
'facebook' => array(
'client_id' => 'TODO',
'client_secret' => 'TODO',
),
'myopenid' => array(
'affiliate_id' => TODO,
),
'twitter' => array(
'key' => 'TODO',
'secret' => 'TODO',
),
),
);
(TODO: Document these settings)
License
-------
Licensed under the GNU GPL version 3.
Kohana-Membership is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Kohana-Membership is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.