https://github.com/fromkk/oauth2server_codeigniter3
https://github.com/fromkk/oauth2server_codeigniter3
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fromkk/oauth2server_codeigniter3
- Owner: fromkk
- License: mit
- Created: 2015-11-17T10:03:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-17T10:03:32.000Z (over 10 years ago)
- Last Synced: 2025-02-03T14:27:42.706Z (over 1 year ago)
- Language: HTML
- Size: 1.37 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: license.txt
Awesome Lists containing this project
README
# OAuth2 server with CodeIgniter 3.0.3
```bash
# CodeIgniterが動作しているパスに移動
cd /path/to/ci
# composerがインストールされていない場合は先にインストール
curl -sS https://getcomposer.org/installer | php
```
composer.json の require項目に追記
```json
"bshaffer/oauth2-server-php": "~1.8"
```
composerの実行
```bash
php composer.phar update
```
---
# マイグレーションの実行
```bash
php index.php migrate index
```
# デモデータの投入
```bash
php index.php initialize index
```