mirror of
https://github.com/opdavies/build-configs.git
synced 2025-03-13 05:26:56 +00:00
Add terraform as a project type, make the language optional, and add a .gitignore and justfile template for Terraform repositories.
14 lines
146 B
PHP
14 lines
146 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enum;
|
|
|
|
enum ProjectType
|
|
{
|
|
case Astro;
|
|
case Drupal;
|
|
case Fractal;
|
|
case Terraform;
|
|
}
|