Note: this is just a Spike / Prototype / Proof of Concept
Quickstart to Symfony project creator. Click on the options you require.
- Owner/Namespace (eg. eddiejaoude)
- Project name (eg. php-initializer)
- Framework (eg. Symfony)
- Framework version (eg. 1.8)
- Production dependencies (eg. JMS Serialiser)
- Development dependencies (eg. Behat)
Then download the zip archive of your project
- Clone the project
- Install dependencies
composer install - Run server
php bin/console server:run - Visit http://localhost:8000/
Packages production & development: app/config/services.yml...
Example
parameters:
packages:
prod:
- { "JMS Serializer Bundle": "jms/serializer-bundle" }
- { "FOS User Bundle": "friendsofsymfony/user-bundle" }
- { "FOS Rest Bundle": "friendsofsymfony/rest-bundle" }
dev:
- { "PHP Unit": "phpunit/phpunit" }
- { "PHP Spec": "phpspec/phpspec" }
- { "Behat": "behat/behat" }