mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-05 19:05:33 +01:00
feat(gitignore): add additional ignored paths
This commit is contained in:
parent
696aa5d617
commit
02774b820b
5 changed files with 30 additions and 0 deletions
|
@ -60,5 +60,19 @@ final class Config
|
|||
#[Assert\NotBlank]
|
||||
public ?string $projectRoot;
|
||||
|
||||
#[Assert\Collection(
|
||||
allowExtraFields: false,
|
||||
fields: [
|
||||
'ignore' => new Assert\Optional([
|
||||
new Assert\Type('array'),
|
||||
new Assert\Count(['min' => 1]),
|
||||
new Assert\All([
|
||||
new Assert\Type('string'),
|
||||
])
|
||||
])
|
||||
]
|
||||
)]
|
||||
public array $git;
|
||||
|
||||
public array $php;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue