Package Data | |
---|---|
Maintainer Username: | unicodeveloper |
Maintainer Contact: | prosperotemuyiwa@gmail.com (unicodeveloper) |
Package Create Date: | 2015-05-06 |
Package Last Update: | 2016-02-27 |
Home Page: | http://goodheads.io/2015/06/19/creating-your-first-laravel-5-package/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:07:24 |
Package Statistics | |
---|---|
Total Downloads: | 7 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 6 |
Total Watchers: | 3 |
Total Forks: | 4 |
Total Open Issues: | 0 |
Laravel 5 Package to Display your status as an Open Source Evangelist
PHP 5.4+ or HHVM 3.3+, and Composer are required.
To get the latest version of Laravel DevStatus, simply add the following line to the require block of your composer.json
file.
"unicodeveloper/laravel-devstatus": "dev-master"
You'll then need to run composer install
or composer update
to download it and have the autoloader updated.
Once Laravel DevStatus is installed, you need to register the service provider. Open up config/app.php
and add the following to the providers
key.
'Unicodeveloper\DevStatus\DevStatusServiceProvider'
Chill, it's undergoing development :smiley_cat:
To get started, you'll need to publish all vendor assets:
$ php artisan vendor:publish
This will create a config/DevStatus.php
file in your app that you can modify to set your configuration.
Set the GITHUB_API_URL constant as an ENVIRONMENT variable on your Server and in your .env file and assign the api url to it e.g
GITHUB_API_URL=https://api.github.com
Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.