inital commit
authorMichael Wallner <mike@php.net>
Tue, 31 Mar 2015 15:14:07 +0000 (17:14 +0200)
committerMichael Wallner <mike@php.net>
Thu, 30 Apr 2015 20:05:56 +0000 (22:05 +0200)
commitebc0d017c8a24bd16ca1f4347b39b07ba4349135
treef9665491fc9da74a5f30e698863a60f2b4553ca0
inital commit
68 files changed:
.gitignore [new file with mode: 0644]
app/BaseUrl.php [new file with mode: 0644]
app/Controller.php [new file with mode: 0644]
app/Controller/Github.php [new file with mode: 0644]
app/Controller/Github/Callback.php [new file with mode: 0644]
app/Controller/Github/Index.php [new file with mode: 0644]
app/Controller/Github/Repo.php [new file with mode: 0644]
app/Controller/Github/Signin.php [new file with mode: 0644]
app/Controller/Homepage.php [new file with mode: 0644]
app/Controller/Wikipage.php [new file with mode: 0644]
app/Github/API.php [new file with mode: 0644]
app/Github/Exception.php [new file with mode: 0644]
app/Github/Exception/HooksFetchFailed.php [new file with mode: 0644]
app/Github/Exception/ReleasesFetchFailed.php.php [new file with mode: 0644]
app/Github/Exception/ReposFetchFailed.php [new file with mode: 0644]
app/Github/Exception/RequestException.php [new file with mode: 0644]
app/Github/Exception/StateException.php [new file with mode: 0644]
app/Github/Exception/StateExpired.php [new file with mode: 0644]
app/Github/Exception/StateMismatch.php [new file with mode: 0644]
app/Github/Exception/StateNotSet.php [new file with mode: 0644]
app/Github/Exception/TokenException.php [new file with mode: 0644]
app/Github/Exception/TokenExpired.php [new file with mode: 0644]
app/Github/Exception/TokenFetchFailed.php [new file with mode: 0644]
app/Github/Exception/TokenNotSet.php [new file with mode: 0644]
app/Github/Fetch.php [new file with mode: 0644]
app/Github/Fetch/Hooks.php [new file with mode: 0644]
app/Github/Fetch/Releases.php [new file with mode: 0644]
app/Github/Fetch/Repo.php [new file with mode: 0644]
app/Github/Fetch/Repos.php [new file with mode: 0644]
app/Github/Fetch/Tags.php [new file with mode: 0644]
app/Github/Fetch/Token.php [new file with mode: 0644]
app/Github/Storage.php [new file with mode: 0644]
app/Github/Storage/Memcache.php [new file with mode: 0644]
app/Github/Storage/Session.php [new file with mode: 0644]
app/Session.php [new file with mode: 0644]
app/Web.php [new file with mode: 0644]
app/bootstrap.php [new file with mode: 0644]
app/bootstrap/config.php [new file with mode: 0644]
app/bootstrap/github.php [new file with mode: 0644]
app/bootstrap/plates.php [new file with mode: 0644]
app/bootstrap/web.php [new file with mode: 0644]
app/config.ini [new file with mode: 0644]
app/routes.ini [new file with mode: 0644]
app/views/404.phtml [new file with mode: 0644]
app/views/405.phtml [new file with mode: 0644]
app/views/alert.phtml [new file with mode: 0644]
app/views/github/callback.phtml [new file with mode: 0644]
app/views/github/index.phtml [new file with mode: 0644]
app/views/github/repo.phtml [new file with mode: 0644]
app/views/layout.phtml [new file with mode: 0644]
app/views/navbar.phtml [new file with mode: 0644]
app/views/pages/index.phtml [new file with mode: 0644]
app/views/pages/wiki.phtml [new file with mode: 0644]
composer.json [new file with mode: 0644]
composer.lock [new file with mode: 0644]
public/.htaccess [new file with mode: 0644]
public/index.css [new file with mode: 0644]
public/index.php [new file with mode: 0644]
public/octicons/LICENSE.txt [new file with mode: 0644]
public/octicons/README.md [new file with mode: 0644]
public/octicons/octicons-local.ttf [new file with mode: 0644]
public/octicons/octicons.css [new file with mode: 0644]
public/octicons/octicons.eot [new file with mode: 0644]
public/octicons/octicons.less [new file with mode: 0644]
public/octicons/octicons.svg [new file with mode: 0644]
public/octicons/octicons.ttf [new file with mode: 0644]
public/octicons/octicons.woff [new file with mode: 0644]
public/octicons/sprockets-octicons.scss [new file with mode: 0644]