dev-master
9999999-devA simple browser for github projects. Package for laravel 4
MIT
The Requires
by Vyze
A simple browser for github projects. Package for laravel 4
The github project browser is open-sourced software licensed under the MIT license, (*1)
This is an add-on for Laravel 4. Main functional is to search projects and users on github.com , to show their details, to fix like status in local database for chosen item. You can watch screenshots from docs/screenshots/., (*2)
Before you start, be sure you have an api token set in you github account with read access to repo and user., (*3)
add to "require" block:, (*4)
"vyze/ghpb": "dev-master"
add to "post-install-cmd" and "post-update-cmd" blocks:, (*5)
"php artisan config:publish graham-campbell/github", "php artisan config:publish vyze/ghpb", "php artisan asset:publish --path='vendor/vyze/ghpb/public/' ghpb", "php artisan asset:publish --path='vendor/twbs/bootstrap/dist/' bootstrap",
modify you app/config/app.php :, (*6)
'providers' => array( // ... 'GrahamCampbell\GitHub\GitHubServiceProvider', //GitHub API 'Vyze\Ghpb\GhpbServiceProvider', //GitHub project browser )
app/config/packages/graham-campbell/config.php: add your github api token here:, (*7)
'main' => array( 'token' => 'your-token', ),
app/config/packages/vyze/config.php: you can set default github vendor/project and the root route for package, (*8)
After all abow you need to create a database structure php artisan migrate --package='vyze/ghpb'
A simple browser for github projects. Package for laravel 4
MIT