Reputation: 2710
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
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