What is a deps file?

I am trying to install a plugin for Symfony 2 looking how to do it. I keep seeing a link to something called the deps file, but I'm not sure which file this refers to either.

I cannot find a file in my symfony folder called "deps"

+3


source to share


1 answer


You are probably using Symfony2.1 which doesn't use deps file, uses composer instead. Symfony2.0 deps file is located at the top level of the application.



Deps (for Symfony2.0) and composer.json (for Symfony2.1+) files are used to install 3rd party (vendor) files as well as core Symfony files

+8


source







All Articles