-
Composer is not an option for me. Can I still use Smarty 4? If so, how? |
Beta Was this translation helpful? Give feedback.
Answered by
lkppo
Dec 5, 2023
Replies: 1 comment
-
Hello, Use composer to download packaged sources as a independent dependencies, and keep a copy of those sources in your source repository. This way you can decouple the update from each dependency and lock the versions separately. The downside is that you have to keep a list of dependencies and their version by hand, and the code will be bigger. I do this for many projects without any inconvenience. Regards, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wisskid
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Use composer to download packaged sources as a independent dependencies, and keep a copy of those sources in your source repository.
This way you can decouple the update from each dependency and lock the versions separately.
The downside is that you have to keep a list of dependencies and their version by hand, and the code will be bigger. I do this for many projects without any inconvenience.
Regards,