skilldlabs / drupal-cleanup
删除Drupal包中的文件。
1.4
2023-12-21 15:27 UTC
Requires
- php: >=7.3.0
- composer-plugin-api: ^1.1 || ^2
README
Composer插件,用于删除Drupal包中的文件
您可以使用根包的composer.json extra字段来配置插件,例如:
"extra": {
"drupal-cleanup": {
"drupal-core": [
"modules/*/tests",
"modules/*/src/Tests",
"profiles/demo_umami",
"profiles/*/tests",
"profiles/*testing*"
],
"drupal-module": [
"tests",
"src/Tests"
],
"exclude": [
"web/modules/contrib/devel/.spoons"
]
}
}