问题
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.
回答1:
Here you have the answer.
https://docs.c9.io/docs/symfony2
I already create one.
回答2:
Note : I assume you are currently on an empty project/repository.
Run the following commands :
- Download the composer.phar executable :
$ curl -sS https://getcomposer.org/installer | php
- Create the project on the current folder :
$ php composer.phar create-project symfony/framework-standard-edition projectName/
External links :
- The Symfony Book
- Composer project on github
来源:https://stackoverflow.com/questions/14808424/symfony-framework-on-cloud9