是否有大量的作曲家数据包减慢了symfony的速度?

I wonder if a large number of composer packets included to my Symfony 2 application slows it down.

For example, I installed nestbot/Carbon, and used it only twice.

Should I be careful of the amount of packages Im including? Does this have any impact on application performance, or they are loaded only when they need to?

Not really. Composer installs extra PHP code under the Vendor directory and your appKernel.php Includes it (using the autoloader). Its just the same when you write an extra class and use the include statement to load it in your application. Of course it takes some microseconds but that is nothing to worie about.

Avoid "optimizing" the autoloader. Using huge amount of classes in very few cases will directly affect the threshold ratio of performance gain of an optimized classmap vs. the performance penalty of loading a big classmap. See my other answer here: Why use a PSR-0 or PSR-4 autoload in composer if classmap is actually faster?