8000 Tweak README · sargath/symfony-cli@a43f98d · GitHub
[go: up one dir, main page]

Skip 8000 to content

Commit a43f98d

Browse files
committed
Tweak README
1 parent 26d7551 commit a43f98d

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

README.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,31 @@
1-
Symfony CLI
2-
===========
1+
<p align="center"><a href="https://symfony.com" target="_blank">
2+
<img src="https://symfony.com/logos/symfony_black_02.svg">
3+
</a></p>
34

4-
Install
5-
-------
5+
The [Symfony binary][1] is a must-have tool when developing Symfony applications
6+
on your local machine. It provides:
7+
8+
* The best way to [create new Symfony applications][2];
9+
* A powerful [local web server][3] to develop your projects with support for [TLS certificates][4];
10+
* A tool to [check for security vulnerabilities][5];
11+
* Seamless integration with [Platform.sh][6].
12+
13+
Installation
14+
------------
615

716
To install Symfony CLI, please download the [appropriate version](https://github.com/symfony-cli/symfony-cli/releases),
817
unarchive the files, and move the binary somewhere under your path. To upgrade, download the latest version 8000
918
and replace the binary by the new one.
19+
20+
Security Issues
21+
---------------
22+
23+
If you discover a security vulnerability, please follow our [disclosure procedure][7].
24+
25+
[1]: https://symfony.com/download
26+
[2]: https://symfony.com/doc/current/setup.html#creating-symfony-applications
27+
[3]: https://symfony.com/doc/current/setup/symfony_server.html
28+
[4]: https://symfony.com/doc/current/setup/symfony_server.html#enabling-tls
29+
[5]: https://symfony.com/doc/current/setup.html#security-checker
30+
[6]: https://symfony.com/cloud
31+
[7]: https://symfony.com/security

cmd/commands/local_var_expose.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ var localVariableExposeFromTunnelCmd = &console.Command{
3636
}
3737

3838
terminal.Eprintln("Exposing tunnel service environment variables")
39-
40-
if err := tunnel.Expose(true); err != nil {
41-
return err
42-
}
43-
44-
return nil
39+
return tunnel.Expose(true)
4540
},
4641
}

0 commit comments

Comments
 (0)
0