https://github.com/unicodeveloper/laravel-devstatus
:bow: :briefcase: Laravel 5 Package to Display your status as an Open Source Evangelist ( For Tutorial purpose )
https://github.com/unicodeveloper/laravel-devstatus
Last synced: 3 months ago
JSON representation
:bow: :briefcase: Laravel 5 Package to Display your status as an Open Source Evangelist ( For Tutorial purpose )
- Host: GitHub
- URL: https://github.com/unicodeveloper/laravel-devstatus
- Owner: unicodeveloper
- Created: 2015-05-06T16:12:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-27T21:41:05.000Z (almost 10 years ago)
- Last Synced: 2025-02-26T14:01:48.652Z (11 months ago)
- Language: PHP
- Homepage: http://goodheads.io/2015/06/19/creating-your-first-laravel-5-package/
- Size: 10.7 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel-DevStatus
> Laravel 5 Package to Display your status as an Open Source Evangelist
## Installation
[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) 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'`
#### Looking for a laravel 4 compatible version?
Chill, it's undergoing development :smiley_cat:
## Configuration
To get started, you'll need to publish all vendor assets:
```bash
$ 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
```bash
GITHUB_API_URL=https://api.github.com
```
## Contributing
Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.