Skip to content

Commit

Permalink
Tweak README
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Dec 31, 2021
1 parent 26d7551 commit a43f98d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 10 deletions.
30 changes: 26 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
Symfony CLI
===========
<p align="center"><a href="https://symfony.com" target="_blank">
<img src="https://symfony.com/logos/symfony_black_02.svg">
</a></p>

Install
-------
The [Symfony binary][1] is a must-have tool when developing Symfony applications
on your local machine. It provides:

* The best way to [create new Symfony applications][2];
* A powerful [local web server][3] to develop your projects with support for [TLS certificates][4];
* A tool to [check for security vulnerabilities][5];
* Seamless integration with [Platform.sh][6].

Installation
------------

To install Symfony CLI, please download the [appropriate version](https://github.com/symfony-cli/symfony-cli/releases),
unarchive the files, and move the binary somewhere under your path. To upgrade, download the latest version
and replace the binary by the new one.

Security Issues
---------------

If you discover a security vulnerability, please follow our [disclosure procedure][7].

[1]: https://symfony.com/download
[2]: https://symfony.com/doc/current/setup.html#creating-symfony-applications
[3]: https://symfony.com/doc/current/setup/symfony_server.html
[4]: https://symfony.com/doc/current/setup/symfony_server.html#enabling-tls
[5]: https://symfony.com/doc/current/setup.html#security-checker
[6]: https://symfony.com/cloud
[7]: https://symfony.com/security
7 changes: 1 addition & 6 deletions cmd/commands/local_var_expose.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ var localVariableExposeFromTunnelCmd = &console.Command{
}

terminal.Eprintln("Exposing tunnel service environment variables")

if err := tunnel.Expose(true); err != nil {
return err
}

return nil
return tunnel.Expose(true)
},
}

0 comments on commit a43f98d

Please sign in to comment.