0

我正在使用 Cakephp 框架和 Bootstrap 3 为 GUI 构建一个网站。目前我使用 Minify 2.1.7 来合并和缩小 css 和 js 文件。当我开始尝试使用 Bootstraps 的 less 文件以获得更大的灵活性和更简洁的 css 代码时,我研究了有关 Minify 的更多信息,以便将其与 less 解析器结合使用。不幸的是,我发现据说 Minify 存在很大的安全风险,不应该使用。人们建议使用 grunt 或assetic。这两种工具使用起来都非常复杂,而且它们不仅是 php,而且还需要对解析器等的某些二进制支持。

  1. 有没有办法或像 Minify 这样的 php 工具可以组合、缩小和解析更少?
  2. 有没有办法为我的用例使用 gruntjs、assetic 或其他工具?(仅限 PHP)
  3. Minify 真的是这样一个安全问题吗?
4

1 回答 1

1
  1. There are grunt tasks for minify and compiling most assets, here is one for less grunt-contrib-less.

  2. Grunt can be used with servers written in any language, use it to generate your static assets and serve them with whatever language you want

于 2013-09-30T01:38:51.650 回答