Skip to content

Commit 2071796

Browse files
author
ghost
committed
implement basic features
1 parent e8f234d commit 2071796

File tree

19 files changed

+389
-365
lines changed

19 files changed

+389
-365
lines changed

.env

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,14 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
4343
# HLState
4444

4545
# Application version, used for API and media cache
46-
APP_VERSION=1.0.0
46+
APP_VERSION="1.0.0"
4747

4848
# Application name
49-
APP_NAME=HLState
49+
APP_NAME="HLState"
5050

51-
# Game server
52-
APP_SERVER_HOST=localhost
53-
APP_SERVER_PORT=27015
54-
APP_SERVER_TIMEOUT=3
51+
# Application template
52+
APP_THEME="default"
53+
54+
# Servers registry, URL or filepath
55+
# https://github.com/YGGverse/HLServers
56+
APP_HLSERVERS="https://raw.githubusercontent.com/YGGverse/HLServers/main/config.json"

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,3 @@
1717
.phpunit.result.cache
1818
/phpunit.xml
1919
###< symfony/phpunit-bridge ###
20-
21-
###> symfony/asset-mapper ###
22-
/public/assets/
23-
/assets/vendor
24-
###< symfony/asset-mapper ###

assets/app.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

assets/bootstrap.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

assets/controllers.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

assets/controllers/hello_controller.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

assets/styles/app.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

composer.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
"doctrine/orm": "^2.17",
1515
"phpdocumentor/reflection-docblock": "^5.3",
1616
"phpstan/phpdoc-parser": "^1.25",
17-
"symfony/asset": "7.0.*",
18-
"symfony/asset-mapper": "7.0.*",
1917
"symfony/console": "7.0.*",
2018
"symfony/doctrine-messenger": "7.0.*",
2119
"symfony/dotenv": "7.0.*",
@@ -43,8 +41,9 @@
4341
"symfony/validator": "7.0.*",
4442
"symfony/web-link": "7.0.*",
4543
"symfony/yaml": "7.0.*",
46-
"twig/extra-bundle": "^2.12|^3.0",
47-
"twig/twig": "^2.12|^3.0",
44+
"twig/extra-bundle": "^3.8",
45+
"twig/intl-extra": "^3.8",
46+
"twig/twig": "^3.8",
4847
"xpaw/php-source-query-class": "^2.1"
4948
},
5049
"config": {
@@ -78,8 +77,7 @@
7877
"scripts": {
7978
"auto-scripts": {
8079
"cache:clear": "symfony-cmd",
81-
"assets:install %PUBLIC_DIR%": "symfony-cmd",
82-
"importmap:install": "symfony-cmd"
80+
"assets:install %PUBLIC_DIR%": "symfony-cmd"
8381
},
8482
"post-install-cmd": [
8583
"@auto-scripts"

0 commit comments

Comments
 (0)