GitIgnore PHP is a lightweight yet powerful PHP library for parsing and managing gitignore‑style rules. It provides a robust engine to interpret .gitignore
patterns—including advanced brace expansion, recursive wildcard matching, negation rules, and configurable case sensitivity. Use GitIgnore PHP to filter files in a repository based on ignore rules, integrate with file processing systems, or build custom file parsers.
-
Gitignore Parsing:
Automatically scans your project directory for.gitignore
files (and optionally additional ignore files) and loads their rules. -
Advanced Glob Pattern Support:
Handles standard wildcards:*
– Matches any sequence of characters (except directory separators).**
– Matches across directory boundaries.?
– Matches any single character.
-
Brace Expansion:
Write compact rules such as*.{js,css,html}
that expand to multiple patterns (*.js
,*.css
, and*.html
). Nested brace expressions are also supported. -
Negation and Rule Precedence:
Supports negation rules (using!
) and complex negation chains so that you can re‑include files that might be excluded by earlier rules. Rules are applied hierarchically based on their directory depth. -
Directory‑only Rules:
Patterns ending with a slash (e.g.build/
) mark directories (and all their contents) as ignored. -
Configurable Case Sensitivity:
Choose between case‑sensitive or case‑insensitive matching via the constructor. -
Multiple Ignore Files:
While the default is to load.gitignore
files, you can specify additional files (e.g.['.ctreeignore']
) to merge extra rules. -
Seamless Symfony Finder Integration:
Designed to work in tandem with Symfony's Finder component, making it easy to filter entire file sets.
Install GitIgnore PHP via Composer:
composer require gregpriday/gitignore-php
Load a project's gitignore rules and determine whether a file should be ignored:
<?php
require 'vendor/autoload.php';
use GregPriday\GitIgnore\GitIgnoreManager;
use Symfony\Component\Finder\SplFileInfo;
// Create a GitIgnoreManager instance for your project directory
$manager = new GitIgnoreManager('/path/to/your/project');
// Check a specific file using Symfony's SplFileInfo
$file = new SplFileInfo('/path/to/your/project/src/Example.php', 'src', 'src/Example.php');
if ($manager->accept($file)) {
echo "File is not ignored.\n";
} else {
echo "File is ignored.\n";
}
By default, only .gitignore
files are loaded. To include extra ignore files (for example, .ctreeignore
), pass an array as the third parameter:
<?php
use GregPriday\GitIgnore\GitIgnoreManager;
// Load the default .gitignore and add .ctreeignore as an extra ignore file.
$manager = new GitIgnoreManager('/path/to/your/project', true, ['.ctreeignore']);
The library supports compact rule definitions using brace expansion. For example:
<?php
use GregPriday\GitIgnore\PatternConverter;
$converter = new PatternConverter();
$expanded = $converter->expandBraces('*.{js,css,html}');
// Expected output: ['*.js', '*.css', '*.html']
print_r($expanded);
Combine GitIgnore PHP with Symfony Finder to list all files that are not ignored:
<?php
use GregPriday\GitIgnore\GitIgnoreManager;
use Symfony\Component\Finder\Finder;
$projectPath = '/path/to/your/git/repo';
$manager = new GitIgnoreManager($projectPath);
$finder = new Finder();
$finder->files()->in($projectPath);
$acceptedFiles = [];
foreach ($finder as $file) {
if ($manager->accept($file)) {
$acceptedFiles[] = $file->getRelativePathname();
}
}
echo "Accepted files:\n";
print_r($acceptedFiles);
-
__construct(string $basePath, bool $caseSensitive = true, array $additionalIgnoreFiles = [])
Initializes the manager by scanning the base directory for ignore files. By default, only.gitignore
is loaded; additional files can be specified. -
accept(SplFileInfo $file): bool
Determines whether the specified file should be accepted (i.e. not ignored) based on the loaded rules. -
matchPattern(string $pattern, string $subject): bool
Checks if the given ignore pattern matches the provided subject string.
-
convertPatternToRegex(string $pattern): string
Converts a gitignore‑style pattern into a regular expression (without delimiters), handling escapes, wildcards, and character classes. -
expandBraces(string $pattern): array
Recursively expands brace expressions (e.g.*.{js,css,html}
) into an array of individual patterns. -
patternToRegex(string $pattern): string
Converts a gitignore pattern into a complete regular expression with delimiters and anchors, ready for use withpreg_match()
.
This project uses Laravel Pint to enforce a consistent coding style. To format your code, run:
composer format
The project includes extensive test coverage using PHPUnit. To run the tests, execute:
composer test
or
vendor/bin/phpunit
Contributions are welcome! To contribute:
-
Fork the Repository:
Create your own fork and clone it locally. -
Create a New Branch:
Develop your feature or fix on a new branch. -
Follow Coding Standards:
Ensure your code adheres to the Laravel coding style by runningcomposer format
and make sure all tests pass. -
Submit a Pull Request:
Provide a clear explanation of your changes in your pull request.
GitIgnore PHP is released under the MIT License. See the LICENSE file for details.
GitIgnore PHP provides a comprehensive and flexible toolset for file filtering using gitignore‑style rules. Its advanced pattern support, combined with Symfony Finder integration, makes it ideal for both simple and complex project workflows. Happy coding!