Initial pages commit

This commit is contained in:
R. Eric Wheeler 2021-01-01 12:31:42 -08:00
commit 36352310bc
3 changed files with 24 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.php_cs
.idea/
.php_cs.cache
vendor/

14
.php_cs.dist Normal file
View File

@ -0,0 +1,14 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('var')
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder)
;

6
public/index.html Normal file
View File

@ -0,0 +1,6 @@
<html>
<head>
</head>
<body>
</body>
</html>