Skip to content

eliashaeussler/gitattributes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

297 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Object-oriented .gitattributes file handling

Coverage CGL Tests Supported PHP Versions

A PHP library to parse and dump .gitattributes file in an object-oriented way. The library provides a GitattributesDumper and GitattributesParser to either read or write contents to or from .gitattributes files. All attributes as of Git v2.46.0 according to the official documentation are supported.

๐Ÿ”ฅ Installation

Packagist Packagist Downloads

composer require eliashaeussler/gitattributes

โšก Usage

Parse rules from .gitattributes file

The main parsing functionality is provided by the GitattributesParser. It can be used as follows:

use EliasHaeussler\Gitattributes;

$parser = new Gitattributes\GitattributesParser(__DIR__);
$ruleset = $parser->parse('.gitattributes');

The returned ruleset contains the original filename as well as all parsed rules as instances of Rule\Rule. A rule contains the file pattern and a list of attributes:

foreach ($ruleset->rules() as $rule) {
    echo $rule->pattern()->toString().' ';

    foreach ($rule->attributes() as $attribute) {
        echo $attribute->toString().' ';
    }

    echo PHP_EOL;
}

Important

Only attribute names listed in the official documentation are supported by the library. Using other than the supported attributes will raise an exception. See Rule\Attribute\AttributeName for an overview.

Dump .gitattributes file from rules

It is also possible to create a new .gitattributes file by dumping a list of prepared rules. This functionality is provided by the GitattributesDumper:

use EliasHaeussler\Gitattributes;

$rules = [
    // You can create rules in an object-oriented way
    new Gitattributes\Rule\Rule(
        new Gitattributes\Rule\Pattern\FilePattern('/tests'),
        [
            Gitattributes\Rule\Attribute\Attribute::set(Gitattributes\Rule\Attribute\AttributeName::ExportIgnore),
        ],
    ),
    // ... or using a string input
    Gitattributes\Rule\Rule::fromString('/phpunit.xml export-ignore'),
];

$dumper = new Gitattributes\GitattributesDumper(__DIR__);
$result = $dumper->dump('.gitattributes', $rules);

Note

A file must not exist when dumping file contents. Otherwise, an exception is thrown.

๐Ÿง‘โ€๐Ÿ’ป Contributing

Please have a look at CONTRIBUTING.md.

โญ License

This project is licensed under GNU General Public License 3.0 (or later).

About

๐Ÿ„ PHP library for object-oriented .gitattributes file handling

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Contributors

Languages

โšก