Initial commit

This commit is contained in:
Oliver Davies 2023-01-19 17:25:51 +00:00
commit cc9a65ba96
6 changed files with 3222 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/build-config.phar
/vendor/

3
box.json.dist Normal file
View file

@ -0,0 +1,3 @@
{
"main": "build-config.php"
}

8
build-config.php Normal file
View file

@ -0,0 +1,8 @@
<?php
use Symfony\Component\Console\Application;
require __DIR__ . '/vendor/autoload.php';
$app = new Application();
$app->run();

9
composer.json Normal file
View file

@ -0,0 +1,9 @@
{
"require": {
"twig/twig": "^3.5",
"symfony/console": "^6.2"
},
"require-dev": {
"humbug/box": "^4.2"
}
}

3195
composer.lock generated Normal file

File diff suppressed because it is too large Load diff

5
justfile Normal file
View file

@ -0,0 +1,5 @@
_default:
@just --list
build:
./vendor/bin/box compile