PHP有没有像ruby gem bundler?

前端之家收集整理的这篇文章主要介绍了PHP有没有像ruby gem bundler?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 PHP程序员,知道Rails.

Ruby gem bundler非常好的工具来安装依赖关系,PHP是否有类似的东西?(也许一些PHP框架有这样的工具).

关于gem bundler的扩展:

Bundler manages an application’s dependencies through its entire life across many machines systematically and repeatably.

Composer.

Composer is a package manager tracking local dependencies of your projects and libraries.

然后你有Packagist(这是主要的Composer存储库).

Packagist is the main Composer repository. It aggregates all sorts of PHP packages that are installable with Composer.

并且您还可以使用Satis管理您的私有/自己的存储库.

Simple static Composer repository generator.

顺便说一下,作者的一篇文章大概是What & Why Composer.

原文链接:https://www.f2er.com/php/131736.html

猜你在找的PHP相关文章