Symfony: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Symfony URL Redirection]] | * [[Symfony URL Redirection]] | ||
* [[Doctrine|Symfony Doctrine]] | * [[Doctrine|Symfony Doctrine]] | ||
==Installation== | |||
===Symfony 4.4(LTS)=== | |||
<source lang="bash"> | |||
rm -rf /usr/local/bin/symfony | |||
curl -sS https://get.symfony.com/cli/installer | bash | |||
export PATH="$HOME/.symfony/bin:$PATH" | |||
symfony new --full AcademiaBash --version=4.4.* | |||
symfony new --full AcademiaBash --version=lts | |||
cd AcademiaBash | |||
symfony server:start | |||
symfony server:start --no-tls | |||
</source> | |||
== Reference == | == Reference == | ||
* [https://symfony.com/doc/3.4/controller/error_pages.html Handle Error Pages] | * [https://symfony.com/doc/3.4/controller/error_pages.html Handle Error Pages] |
Revision as of 06:21, 28 December 2019
Installation
Symfony 4.4(LTS)
rm -rf /usr/local/bin/symfony
curl -sS https://get.symfony.com/cli/installer | bash
export PATH="$HOME/.symfony/bin:$PATH"
symfony new --full AcademiaBash --version=4.4.*
symfony new --full AcademiaBash --version=lts
cd AcademiaBash
symfony server:start
symfony server:start --no-tls