ramytalal/exporter

This package is abandoned and no longer maintained. No replacement package was suggested.

Export the Laravel environment file to a capable web server format.

1.2.0 2018-03-07 15:37 UTC

This package is auto-updated.

Last update: 2021-07-11 14:24:29 UTC


README

Latest Version on Packagist Software License Build Status Quality Score StyleCI Total Downloads

Export the Laravel environment file to a capable web server format.

Install

composer require RamyTalal/Exporter

Usage

Laravel

php artisan env:export nginx --file=.env

Standalone

use Talal\Exporter\Exporter;
use Talal\Exporter\Output\Nginx;

$file = file_get_contents('.env');
$exporter = new Exporter(new Nginx($file));

echo $exporter->output();

Nginx, Apache, IIS, lighttpd, and bash are supported.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email ramy@thinkquality.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.