scalopus
scalopus

Reputation: 2710

Symfony minimum package for console application

By default, to use symfony standard package, there are some packages that may not need to use by the command line such Template engine, security, asset

I would like to know a minimal set of composer package which allow me to make console application with ability to use YML configuration.

Upvotes: 1

Views: 275

Answers (1)

ChrisMoll
ChrisMoll

Reputation: 365

Just require symfony/console and let composer handle the dependencies. It's unclear what you mean by "application", since that can mean a lot of things. But you can always add HttpFoundation or DependencyInjection to start building it out. But your question is literally what composer is there for :)

Upvotes: 1

Related Questions