mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 03:15:34 +01:00
refactor: serialise and validate a configuration
...data object
This commit is contained in:
parent
a6ff416012
commit
e30929e69c
6 changed files with 325 additions and 117 deletions
38
src/ConfigurationData.php
Normal file
38
src/ConfigurationData.php
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OliverDaviesLtd\BuildConfigs;
|
||||
|
||||
use Symfony\Component\Validator\Constraints as Assert;
|
||||
|
||||
final class ConfigurationData
|
||||
{
|
||||
#[Assert\Collection(
|
||||
allowExtraFields: false,
|
||||
fields: [
|
||||
'extra_databases' => new Assert\Optional(
|
||||
new Assert\All(new Assert\Type('string'))
|
||||
),
|
||||
'type' => new Assert\Choice(['mariadb', 'mysql']),
|
||||
'version' => new Assert\Type('integer'),
|
||||
],
|
||||
allowExtraFields: false,
|
||||
)]
|
||||
public array $database;
|
||||
|
||||
#[Assert\Choice(choices: ['node', 'php'])]
|
||||
#[Assert\NotBlank]
|
||||
public string $language;
|
||||
|
||||
#[Assert\Length(min: 1)]
|
||||
#[Assert\NotBlank]
|
||||
public string $name;
|
||||
|
||||
#[Assert\Choice(choices: ['drupal-project', 'fractal', 'laravel', 'php-library'])]
|
||||
#[Assert\NotBlank]
|
||||
public string $type;
|
||||
|
||||
#[Assert\NotBlank]
|
||||
public ?string $projectRoot;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue