Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I Download the Symfony Distribution as Zip archive?

I am trying to download symfony since 2 hours, but I can't find a zip to download. I can't use composer on my network that's why I want a zip. I have gone a lot of time to the download chapter on the symfony web site but I can't find any zip of the lts version. Only the evaluation package is available in zip. I am going crazy!

like image 675
Etienne Avatar asked Nov 24 '14 10:11

Etienne


People also ask

What is Symfony CLI?

The Symfony CLI is a developer tool to help you build, run, and manage your Symfony applications directly from your terminal. It's Open-Source, works on macOS, Windows, and Linux, and you only have to install it once in your system. You can use the Symfony CLI to: Create new Symfony applications.

What is Symfony binary?

The Symfony binary includes a command for logs that will combine PHP, Symfony and the HTTP server in the same place: symfony local:server:log. By default, we will have everything in the command but it is possible to filter using the --no-app-logs or --no-server-logs options.

What can you do with Symfony?

Symfony is a feature-rich back-end framework that is used to build complex applications. Many developers still prefer the lightweight Silex micro-framework or the Symfony MicroKernel, and Symfony is a widely used application framework among open-source developers.


2 Answers

Please check bellow link

http://symfony.com/download?v=Symfony_Standard_Vendors_2.6.0.tgz

Or

https://github.com/symfony/symfony-standard/archive/2.6.zip

Note : Don't forget to change your version

For Latest 3.1.0 Version Links

http://symfony.com/download?v=Symfony_Standard_Vendors_3.1.0.tgz

or

https://github.com/symfony/symfony-standard/archive/3.1.zip

Above links I have given 2.6.0 and 3.1.0 versions , You can change your suitable version , I thought this one help you , Happy Work :) ...

Using command

php symfony new my_project_name 2.6.5

or

composer create-project symfony/framework-standard-edition my_project_name "2.6.5"

More information please check official documentation http://symfony.com/doc/current/book/installation.html

like image 71
Raja Rama Mohan Thavalam Avatar answered Nov 15 '22 22:11

Raja Rama Mohan Thavalam


you should download the zip from the official Git-Repo at: https://github.com/symfony/symfony-standard

The dl link is in the lower right corner.

like image 35
Mark Labenski Avatar answered Nov 15 '22 23:11

Mark Labenski