Skip to content
This repository has been archived by the owner on Jul 3, 2021. It is now read-only.

Commit

Permalink
Added support for exporting to Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramy Talal committed Jan 26, 2017
1 parent efb36ab commit c571d90
Show file tree
Hide file tree
Showing 11 changed files with 755 additions and 240 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License (MIT)

Copyright (c) 2016 Ramy Talal <ramy@thinkquality.nl>
Copyright (c) 2017 Ramy Talal <ramy@thinkquality.nl>

> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]

Expand Down Expand Up @@ -49,13 +48,8 @@ $exporter = new Exporter(new Nginx($file));
echo $exporter->output();
```

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

## Testing

``` bash
$ composer test
```

## Contributing

Expand All @@ -77,13 +71,11 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
[ico-version]: https://img.shields.io/packagist/v/RamyTalal/Exporter.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-travis]: https://img.shields.io/travis/RamyTalal/Exporter/master.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/RamyTalal/Exporter.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/RamyTalal/Exporter.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/RamyTalal/Exporter.svg?style=flat-square

[link-packagist]: https://packagist.org/packages/RamyTalal/Exporter
[link-travis]: https://travis-ci.org/RamyTalal/Exporter
[link-scrutinizer]: https://scrutinizer-ci.com/g/RamyTalal/Exporter/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/RamyTalal/Exporter
[link-downloads]: https://packagist.org/packages/RamyTalal/Exporter
[link-author]: https://github.com/RamyTalal
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@
}
],
"require": {
"php": ">=5.5.9"
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"illuminate/console": "~5.1",
"illuminate/filesystem": "~5.1",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
"phpunit/phpunit": "5.*",
"illuminate/console": "~5.4",
"illuminate/filesystem": "~5.4",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit c571d90

Please sign in to comment.