Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ APP_NAME="Speedtest Tracker"
APP_ENV=local
APP_KEY=
APP_DEBUG=false
APP_TIMEZONE=UTC
APP_URL=http://localhost

APP_LOCALE=en
Expand All @@ -12,6 +11,8 @@ APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database

PHP_CLI_SERVER_WORKERS=4

BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
Expand Down Expand Up @@ -42,6 +43,6 @@ MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_SCHEME=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Speedtest Tracker"
2 changes: 1 addition & 1 deletion .env.testing
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_SCHEME=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Speedtest Tracker"

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
_ide_helper.php
.env
Expand All @@ -17,5 +18,6 @@ npm-debug.log
yarn-error.log
/.fleet
/.idea
/.nova
/.phpunit.cache
/.vscode
7 changes: 5 additions & 2 deletions artisan
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env php
<?php

use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\ArgvInput;

define('LARAVEL_START', microtime(true));
Expand All @@ -9,7 +10,9 @@ define('LARAVEL_START', microtime(true));
require __DIR__.'/vendor/autoload.php';

// Bootstrap Laravel and handle the command...
$status = (require_once __DIR__.'/bootstrap/app.php')
->handleCommand(new ArgvInput);
/** @var Application $app */
$app = require_once __DIR__.'/bootstrap/app.php';

$status = $app->handleCommand(new ArgvInput);

exit($status);
38 changes: 21 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,37 @@
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"dragonmantank/cron-expression": "^3.4.0",
"filament/filament": "^3.2.142",
"filament/spatie-laravel-settings-plugin": "^3.2.142",
"filament/filament": "^3.3.4",
"filament/spatie-laravel-settings-plugin": "^3.3.4",
"geerlingguy/ping": "^1.2.1",
"guzzlehttp/guzzle": "^7.9.2",
"influxdata/influxdb-client-php": "^3.7",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.43.2",
"laravel-notification-channels/telegram": "^6.0",
"laravel/framework": "^12.3",
"laravel/prompts": "^0.3.5",
"laravel/sanctum": "^4.0.8",
"laravel/tinker": "^2.10.1",
"livewire/livewire": "3.5.12",
"lorisleiva/laravel-actions": "^2.8.6",
"livewire/livewire": "^3.6.2",
"lorisleiva/laravel-actions": "^2.9",
"maennchen/zipstream-php": "^2.4",
"secondnetwork/blade-tabler-icons": "^3.30.1",
"spatie/laravel-json-api-paginate": "^1.16.2",
"secondnetwork/blade-tabler-icons": "^3.31.0",
"spatie/laravel-json-api-paginate": "^1.16.3",
"spatie/laravel-query-builder": "^6.3.1",
"spatie/laravel-settings": "^3.4.2",
"spatie/laravel-webhook-server": "^3.8.3",
"timokoerber/laravel-one-time-operations": "^1.4.4",
"zircote/swagger-php": "^5.0.4"
"timokoerber/laravel-one-time-operations": "^1.4.5",
"zircote/swagger-php": "^5.0.6"
},
"require-dev": {
"fakerphp/faker": "^1.24.1",
"laravel/pint": "^1.21.0",
"laravel/pint": "^1.21.2",
"laravel/sail": "^1.41.0",
"laravel/telescope": "^5.5.0",
"laravel/telescope": "^5.6.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.6.1",
"phpunit/phpunit": "^11.5.9",
"nunomaduro/collision": "^8.7.0",
"phpunit/phpunit": "^11.5.13",
"spatie/laravel-ignition": "^2.9.1",
"tightenco/duster": "^3.1.0"
"tightenco/duster": "^3.1.0",
"laravel/pail": "^1.2.2"
},
"autoload": {
"files": [
Expand Down Expand Up @@ -80,6 +80,10 @@
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
]
},
"funding": [
Expand Down Expand Up @@ -107,6 +111,6 @@
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true
}
Loading