mirror of
https://github.com/opdavies/build-configs.git
synced 2025-03-13 05:26:56 +00:00
Initial commit
This commit is contained in:
commit
cc9a65ba96
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
Loading…
Reference in a new issue