我正在尝试使用composer存档我的项目以通过zip进行分发,我希望能够忽略杂项文件和文件夹,特别是我在.gitignore文件中
/storage/
忽略文件夹及其内容。但是我在composer.json
中有以下内容"archive": {
"exclude": ["!vendor","!storage","storage/**/*","*/**/*.json","*/**/*.lock","*/**/tests","*/**/docs","*.md","*/**/.git","gulpfile.js",".git*","!storage/*/","*/node_modules","**/*.xml","web.config","resources","!public/",".env"]
}
我希望能够包含文件夹和子文件夹,但不包括文件。但是,模式匹配似乎不起作用。有没有其他方法可以完成我正在做的事情