Package Data | |
---|---|
Maintainer Username: | subscribo |
Package Create Date: | 2015-09-19 |
Package Last Update: | 2016-11-26 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:04:31 |
Package Statistics | |
---|---|
Total Downloads: | 77 |
Monthly Downloads: | 5 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Package for getting current environment
1.1 Add the following to your project's composer.json:
1.1.1 Repository containing this package (note: you need to have access to this repository as well as to resources it points to)
1.1.2 Dependency under "require" key
"subscribo/environment": "^0.1.0"
1.2. If you are using Laravel (5.0), you might want to add
'\\Subscribo\\Environment\\Integration\\Laravel\\EnvironmentServiceProvider',
under 'providers' key in config/app.php file.
or
if (class_exists('\\Subscribo\\Environment\\Integration\\Laravel\\EnvironmentServiceProvider')) {
$app->register('\\Subscribo\\Environment\\Integration\\Laravel\\EnvironmentServiceProvider');
}
in bootstrap/app.php for conditional registration
If used with package adding this dependency and registering this service provider for you, this step (1.2) is not necessary.