0

Is there a way to setup a Symfony project on Cloud9?

I found some articles on creating Yii projects this way, but nothing on Symfony.

jOpacic
  • 9,453
  • 12
  • 36
  • 58

2 Answers2

1

Note : I assume you are currently on an empty project/repository.

Run the following commands :

  1. Download the composer.phar executable : $ curl -sS https://getcomposer.org/installer | php
  2. Create the project on the current folder : $ php composer.phar create-project symfony/framework-standard-edition projectName/

External links :

Geoffrey Hale
  • 10,597
  • 5
  • 44
  • 45
nicolaspanel
  • 943
  • 11
  • 21
1

Here you have the answer.

https://docs.c9.io/docs/symfony2

I already create one.

Rodolfo Velasco
  • 845
  • 2
  • 12
  • 27