Skip to content

Commit

Permalink
compose
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <[email protected]>
  • Loading branch information
Dusan Malusev committed Jan 7, 2025
1 parent 08fd49a commit eaa266e
Show file tree
Hide file tree
Showing 11 changed files with 1,041 additions and 149 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ setup.sh
data/
.vscode/
.idea/
.env
vendor/
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ CACHE_STORE=redis
CACHE_PREFIX=

SESSION_DRIVER=redis
SESSION_STORE=redis
SESSION_STORE=sessions
SESSION_LIFETIME=120
SESSION_CONNECTION=sessions
SESSION_ENCRYPT=false
Expand Down
252 changes: 127 additions & 125 deletions .phpstorm.meta.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/View/Components/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class Header extends Component
{
public private(set) readonly array $links;
public readonly array $links;

public function __construct(UrlGenerator $urlGenerator)
{
Expand Down
2 changes: 1 addition & 1 deletion app/View/Components/ProfileLinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ProfileLinks extends Component
{
public private(set) readonly array $links;
public readonly array $links;

public function __construct(Repository $config)
{
Expand Down
6 changes: 3 additions & 3 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
depends_on:
- typesense
- pgsql
- valkey
- redis
- minio
- mailpit
- soketi
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
- "${DB_USERNAME}"
retries: 3
timeout: 5s
valkey:
redis:
image: 'ghcr.io/malusevdevelopment/valkey:dev'
restart: unless-stopped
build:
Expand Down Expand Up @@ -121,7 +121,7 @@ services:
image: "quay.io/soketi/soketi:1.6-16-debian"
depends_on:
- pgsql
- valkey
- redis
environment:
SOKETI_DEBUG: "${SOKETI_DEBUG:-1}"
SOKETI_METRICS_SERVER_PORT: "9601"
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-sodium": "*",
"ext-sockets": "*",
"ext-sodium": "*",
"althinect/filament-spatie-roles-permissions": "^2.2",
"aws/aws-sdk-php": "^3.336",
"codelieutenant/laravel-crypto": "^v1.0.0",
Expand Down Expand Up @@ -69,7 +69,8 @@
"rector/rector": "^2.0",
"roave/security-advisories": "dev-latest",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-ray": "^1.35"
"spatie/laravel-ray": "^1.35",
"friendsofphp/php-cs-fixer": "^3.66"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit eaa266e

Please sign in to comment.