-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can the plugin support excluding folders? #16
Comments
That's a good idea. When I have a chance I'll explore possible solutions. Taking laravel/framework for example, I would probably just add glob support to "extra": {
"exclude-from-files": [
"laravel/framework/src/*/helpers.php"
]
} Thanks |
Moved file exclusion matching to value object classes `Path` and `Paths`. Provides support for wildcard exclusions using an asterisk: ```json "extra": { "exclude-from-files": [ "laravel/framework/src/*/helpers.php" ] } ``` Changed: - Refactored tests to decouple set-up and tear-down, sort methods by visibility and alphabetically, and improve static analysis. - Updated tests to support meta-packages and immutable packages. - Fixed support for `InstallationManager` before and after Composer v2.5.6. Resolves #16
@mcaskill The plugin test looks fine. But I think I'm getting something wrong and it's not solving my requirement scenario. I want to develop a package, and the tests inside pacakge will have a complete application and install the package I'm developing, using the path repository.
I think I still need to re-learn how composer works. But thanks for the new glob support! |
Moved file exclusion matching to value object classes `Path` and `Paths`. Provides support for wildcard exclusions using an asterisk: ```json "extra": { "exclude-from-files": [ "laravel/framework/src/*/helpers.php" ] } ``` Changed: - Refactored tests to decouple set-up and tear-down, sort methods by visibility and alphabetically, and improve static analysis. - Updated tests to support meta-packages and immutable packages. - Fixed support for `InstallationManager` before and after Composer v2.5.6. Resolves #16
Moved file exclusion matching to value object classes `Path` and `Paths`. Provides support for wildcard exclusions using an asterisk: ```json "extra": { "exclude-from-files": [ "laravel/framework/src/*/helpers.php" ] } ``` Changed: - Refactored tests to decouple set-up and tear-down, sort methods by visibility and alphabetically, and improve static analysis. - Updated tests to support meta-packages and immutable packages. - Fixed support for `InstallationManager` before and after Composer v2.5.6. Resolves #16
Is your feature request related to a problem? Please describe.
Some folders contain numerous files, making it difficult to list them one by one. Is it possible to implement functionality to exclude certain folders?
Describe the solution you'd like
It might be possible to define such a format in the "extra" section of the composer.json file, allowing for the exclusion of specified folders.
The text was updated successfully, but these errors were encountered: