All Projects → symfony → Symfony Installer

symfony / Symfony Installer

Licence: mit
The Symfony Installer

Projects that are alternatives of or similar to Symfony Installer

Ezplatform
Meta repository that pulls in all dependencies for clean distribution of Ibexa Platform.
Stars: ✭ 322 (-7.2%)
Mutual labels:  symfony
Fossdroid Core
Fossdroid Core is a web frontend of F-Droid: an alternative software repository comprising only free, open source software for Android. This repo is the open source version of fossdroid.com.
Stars: ✭ 329 (-5.19%)
Mutual labels:  symfony
Choosenim
Tool for easily installing and managing multiple versions of the Nim programming language.
Stars: ✭ 338 (-2.59%)
Mutual labels:  installer
Polyfill Php70
This component provides features unavailable in releases prior to PHP 7.0.
Stars: ✭ 3,270 (+842.36%)
Mutual labels:  symfony
Symfony React Sandbox
Example of integration with React and Webpack (Webpack Encore) for universal (isomorphic) React rendering, using Limenius/ReactBundle and Limenius/LiformBundle
Stars: ✭ 325 (-6.34%)
Mutual labels:  symfony
Config
The Config component helps you find, load, combine, autofill and validate configuration values of any kind, whatever their source may be (YAML, XML, INI files, or for instance a database).
Stars: ✭ 3,671 (+957.93%)
Mutual labels:  symfony
Easyadminbundle
EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
Stars: ✭ 3,391 (+877.23%)
Mutual labels:  symfony
Flex
Composer plugin for Symfony
Stars: ✭ 3,731 (+975.22%)
Mutual labels:  symfony
Cache
The Cache component provides an extended PSR-6 implementation for adding cache to your applications.
Stars: ✭ 3,606 (+939.19%)
Mutual labels:  symfony
Weeshop
优雅易用的微信小程序商城,PHP商城。 基于Laravel的基因,来自Symfony的底层技术,来自Drupal Commerce的核心技术,由Drupal中国开源社区维护。QQ群:714023327
Stars: ✭ 337 (-2.88%)
Mutual labels:  symfony
Dom Crawler
The DomCrawler component eases DOM navigation for HTML and XML documents.
Stars: ✭ 3,499 (+908.36%)
Mutual labels:  symfony
Jarves
Jarves CMS/Application Framework based on Symfony - Alpha material
Stars: ✭ 325 (-6.34%)
Mutual labels:  symfony
Datatablesbundle
This Bundle integrates the jQuery DataTables plugin into your Symfony application.
Stars: ✭ 334 (-3.75%)
Mutual labels:  symfony
Security Acl
Symfony Security ACL Component
Stars: ✭ 321 (-7.49%)
Mutual labels:  symfony
Doctrinemongodbbundle
Integrates Doctrine MongoDB ODM with Symfony
Stars: ✭ 342 (-1.44%)
Mutual labels:  symfony
Commandschedulerbundle
Symfony bundle that will allow you to schedule all your commands just like unix crontab, with a nice admin panel
Stars: ✭ 318 (-8.36%)
Mutual labels:  symfony
Pim Community Standard
[Community Standard Edition] The open source Product Information Management (PIM) - please raise issues in https://github.com/akeneo/pim-community-dev/issues
Stars: ✭ 329 (-5.19%)
Mutual labels:  symfony
Doctrinemigrationsbundle
Symfony integration for the doctrine/migrations library
Stars: ✭ 3,782 (+989.91%)
Mutual labels:  symfony
Kunstmaanbundlescms
An advanced yet user-friendly content management system, based on the full stack Symfony framework combined with a whole host of community bundles. It provides a full featured, multi-language CMS system with an innovative page and form assembling process, versioning, workflow, translation and media managers and much more.
Stars: ✭ 346 (-0.29%)
Mutual labels:  symfony
Dependency Injection
The DependencyInjection component allows you to standardize and centralize the way objects are constructed in your application.
Stars: ✭ 3,635 (+947.55%)
Mutual labels:  symfony

Symfony Installer

This is the official installer to start new projects based on the Symfony full-stack framework. The installer is only compatible with Symfony 2 and 3.

Creating Symfony 4 projects

This installer is not compatible with Symfony 4 and newer versions. Instead, use Composer and create your Symfony 4 project as follows:

$ composer create-project symfony/skeleton my_project_name

See the Symfony Installation article on the official Symfony Documentation for more details.

Installing the installer

This step is only needed the first time you use the installer:

Linux and Mac OS X

$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
$ sudo chmod a+x /usr/local/bin/symfony

Windows

c:\> php -r "file_put_contents('symfony', file_get_contents('https://symfony.com/installer'));"

Move the downloaded symfony file to your projects directory and execute it as follows:

c:\> php symfony

If you prefer to create a global symfony command, execute the following:

c:\> (echo @ECHO OFF & echo php "%~dp0symfony" %*) > symfony.bat

Then, move both files (symfony and symfony.bat) to any location included in your execution path. Now you can run the symfony command anywhere on your system.

Using the installer

1. Start a new project with the latest stable Symfony version

Execute the new command and provide the name of your project as the only argument:

# Linux, Mac OS X
$ symfony new my_project

# Windows
c:\> php symfony new my_project

2. Start a new project with the latest Symfony LTS (Long Term Support) version

Execute the new command and provide the name of your project as the first argument and lts as the second argument. The installer will automatically select the most recent LTS (Long Term Support) version available:

# Linux, Mac OS X
$ symfony new my_project lts

# Windows
c:\> php symfony new my_project lts

3. Start a new project based on a specific Symfony branch

Execute the new command and provide the name of your project as the first argument and the branch number as the second argument. The installer will automatically select the most recent version available for the given branch:

# Linux, Mac OS X
$ symfony new my_project 2.8

# Windows
c:\> php symfony new my_project 2.8

4. Start a new project based on a specific Symfony version

Execute the new command and provide the name of your project as the first argument and the exact Symfony version as the second argument:

# Linux, Mac OS X
$ symfony new my_project 2.8.1

# Windows
c:\> php symfony new my_project 2.8.1

5. Install the Symfony demo application

The Symfony Demo is a reference application developed using the official Symfony Best Practices:

# Linux, Mac OS X
$ symfony demo

# Windows
c:\> php symfony demo

Updating the installer

New versions of the Symfony Installer are released regularly. To update your installer version, execute the following command:

# Linux, Mac OS X
$ symfony self-update

# Windows
c:\> php symfony self-update

NOTE

If your system requires the use of a proxy server to download contents, the installer tries to guess the best proxy settings from the HTTP_PROXY and http_proxy environment variables. Make sure any of them is set before executing the Symfony Installer.

Troubleshooting

SSL and certificates issues on Windows systems

If you experience any error related with SSL or security certificates when using the Symfony Installer on Windows systems:

  1. Check that the OpenSSL extension is enabled in your php.ini configuration:
; make sure that the following line is uncommented
extension=php_openssl.dll
  1. Check that the path to the file that contains the security certificates exists and is defined in php.ini:
openssl.cafile=C:/path/to/cacert.pem

If you can't locate the cacert.pem file anywhere on your system, you can safely download it from the official website of the cURL project: http://curl.haxx.se/ca/cacert.pem

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].