Why can't symfony find my auto-loaded class?
问题 I'm trying to use the php-ga third-party library in my symfony project. I've installed the library in apps/<app>/lib , cleared the cache, and the third-party files are appearing as I would expect in config_autoload.yml.php : 'tracker' => 'C:/wamp/www/apps/api/lib/php-ga/GoogleAnalytics/Tracker.php', 'transaction' => 'C:/wamp/www/apps/api/lib/php-ga/GoogleAnalytics/Transaction.php', ... However, when I try to use the classes in an action under the same app like so: use UnitedPrototype