Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
austinkregel committed Dec 26, 2023
1 parent d23edef commit 4a96c56
Show file tree
Hide file tree
Showing 19 changed files with 251 additions and 31 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/cs-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,3 @@ jobs:
with:
preset: laravel

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: PHP Linting (Pint)
skip_fetch: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ yarn-error.log
/.vscode
/*.log
/*.pid
storage/*.bin
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ $ ./sail up -d
- [ ] List budget usage -- if applicable.
- [ ] Domain Purchasing and Renewals


- Single Chat interface
- Email interface
# Domain Feature Details
This presently uses Cloudflare DNS.

Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"ext-ssh2": "*",
"beyondcode/laravel-websockets": "^1.14",
"bezhansalleh/filament-shield": "^3.1",
"bugsnag/bugsnag-laravel": "^2.0",
"composer/composer": "^2.6",
"filament/filament": "^3.0-stable",
"guzzlehttp/guzzle": "^7.7",
Expand Down
185 changes: 184 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@

'password_timeout' => 10800,

'admin_emails' => explode(',', env('SPORK_ADMIN_EMAILS','')),
'admin_emails' => explode(',', env('SPORK_ADMIN_EMAILS', '')),
];
2 changes: 2 additions & 0 deletions config/bugsnag.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

return [

/*
Expand Down
2 changes: 1 addition & 1 deletion config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env("DB_DATABASE"),
'database' => env('DB_DATABASE'),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
Expand Down
3 changes: 2 additions & 1 deletion config/filament-shield.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

return [
'shield_resource' => [
'should_register_navigation' => true,
Expand Down Expand Up @@ -72,7 +74,6 @@

'resources' => [


],
],

Expand Down
2 changes: 1 addition & 1 deletion config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,5 @@
'username' => env('IMAP_USERNAME'),
'password' => env('IMAP_PASSWORD'),
],
]
],
];
2 changes: 2 additions & 0 deletions config/pulse.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Laravel\Pulse\Http\Middleware\Authorize;
use Laravel\Pulse\Recorders;

Expand Down
8 changes: 5 additions & 3 deletions config/spork.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
<?php

declare(strict_types=1);

return [
'prefix' => '',
'filesystem' => [
'default' => env('SPORK_DEFAULT_FILESYSTEM')
'default' => env('SPORK_DEFAULT_FILESYSTEM'),
],
'code' => [
'enabled' => true,
'settings' => [
// These vendors dont always match 100% with the versions or available interfaces, likely due to missing dev dependencies.
'blacklist' => ['nesbot', 'doctrine', 'google', 'psy', 'cboden', 'symfony', 'phpunit', 'mockery', 'zendframework'],
'whitelist' => [],
]
]
],
],
];
2 changes: 2 additions & 0 deletions config/websockets.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use BeyondCode\LaravelWebSockets\Dashboard\Http\Middleware\Authorize;

return [
Expand Down
23 changes: 11 additions & 12 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
version: '3'
services:

laravel.test:
build:
context: ./docker/8.2
Expand Down Expand Up @@ -120,17 +119,16 @@ services:
depends_on:
- redis
- mariadb
matrix-bot:
build:
context: ./docker/matrix-bot
dockerfile: Dockerfile
volumes:
- '.:/var/www/html'
networks:
- sail
depends_on:
- mariadb

# matrix-bot:
# build:
# context: ./docker/matrix-bot
# dockerfile: Dockerfile
# volumes:
# - '.:/var/www/html'
# networks:
# - sail
# depends_on:
# - mariadb
laravel.websocket:
image: austinkregel/reforged-websocket:latest
build:
Expand Down Expand Up @@ -161,6 +159,7 @@ services:
ports:
- 1143:143
- 1025:25

networks:
sail:
driver: bridge
Expand Down
Loading

0 comments on commit 4a96c56

Please sign in to comment.