mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 19:35:33 +01:00
Initial commit
This commit is contained in:
commit
cc9a65ba96
6 changed files with 3222 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/build-config.phar
|
||||||
|
/vendor/
|
3
box.json.dist
Normal file
3
box.json.dist
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"main": "build-config.php"
|
||||||
|
}
|
8
build-config.php
Normal file
8
build-config.php
Normal 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
9
composer.json
Normal 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
3195
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
5
justfile
Normal file
5
justfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
_default:
|
||||||
|
@just --list
|
||||||
|
|
||||||
|
build:
|
||||||
|
./vendor/bin/box compile
|
Loading…
Add table
Add a link
Reference in a new issue