我正在使用bower打包系统将文件提取到本地项目,但违反约定这些文件本身无用。他们需要注入我正在使用的MVC框架中的适当位置,因此无论什么样的bower提取我都需要基本上执行post操作并将目录结构/文件从components/myexample/
复制到application/
远程凉亭套餐:
controllers
mycontroller.php
models
mymodel.php
view
layout
myview.php
composer.json
本地项目:
composer.json
components
myexample
controllers
mycontroller.php
models
mymodel.php
view
layout
myview.php
application
controllers
models
view
我正在考虑检索目录结构和文件以将其全部压缩,然后对正确的目录进行提取。我需要解决方案是跨平台兼容的。你会怎么做,更好,你还会怎么做呢?