Skip to content

Commit 4530357

Browse files
Update symfony to 7.2. Use php 8.3.
1 parent f09be94 commit 4530357

File tree

409 files changed

+48475
-23241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

409 files changed

+48475
-23241
lines changed

.env

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ DB_NAME=bewelcome
33
DB_USER=bewelcome
44
DB_PASS=bewelcome
55
DB_PORT=3306
6+
# Make sure to copy this over to .env.local if used
7+
DATABASE_URL="mysql://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME}?serverVersion=10.9.1-MariaDB&charset=utf8mb4"
68

79
APP_REFRESH_TOKEN_TTL=600
810

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,8 @@ yarn-error.log
9393
/.php-cs-fixer.php
9494
/.php-cs-fixer.cache
9595
###< friendsofphp/php-cs-fixer ###
96+
97+
###> phpunit/phpunit ###
98+
/phpunit.xml
99+
.phpunit.result.cache
100+
###< phpunit/phpunit ###

.idea/deployment.xml

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/develop.iml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php-test-framework.xml

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

+821
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpunit.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+1,900
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.php-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.3

INSTALL.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010

1111
2. You can choose to install using A) Docker and Docker Compose or B) Installation step by step of BW-Rox (GNU/Linux) (see below)
1212

13-
## A) Install using Docker and Docker Compose
14-
15-
The docker configuration is still in-progress, and is currently missing the setup of the sphinx search functionality (essential for using all of the search functionality in the app). Until configuration is complete, local installation is recommended.
13+
## Install using Docker and Docker Compose
1614

1715
### Requirements
1816

@@ -33,7 +31,7 @@ The docker configuration is still in-progress, and is currently missing the setu
3331
```bash
3432
$ make install root=1
3533
```
36-
34+
3735
<details>
3836
<summary><strong>Troubleshooting</strong></summary>
3937

0 commit comments

Comments
 (0)