2025-06-12 dependency updates (#2243)

Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
This commit is contained in:
Alex Justesen
2025-06-12 07:50:59 -04:00
committed by GitHub
parent 3c68a68a77
commit 3a525dc249
12 changed files with 594 additions and 993 deletions
-20
View File
@@ -9,23 +9,3 @@ updates:
- "dependencies"
commit-message:
prefix: "gh actions"
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "monthly"
day: "thursday"
labels:
- "dependencies"
commit-message:
prefix: "composer"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
day: "thursday"
labels:
- "dependencies"
commit-message:
prefix: "npm"
+10 -11
View File
@@ -18,33 +18,33 @@
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"dragonmantank/cron-expression": "^3.4.0",
"filament/filament": "^3.3.14",
"filament/spatie-laravel-settings-plugin": "^3.3.14",
"filament/filament": "^3.3.21",
"filament/spatie-laravel-settings-plugin": "^3.3.21",
"geerlingguy/ping": "^1.2.1",
"influxdata/influxdb-client-php": "^3.7",
"laravel-notification-channels/telegram": "^6.0",
"laravel/framework": "^12.13.0",
"laravel/framework": "^12.18.0",
"laravel/prompts": "^0.3.5",
"laravel/sanctum": "^4.1.1",
"livewire/livewire": "^3.6.3",
"lorisleiva/laravel-actions": "^2.9",
"maennchen/zipstream-php": "^2.4",
"secondnetwork/blade-tabler-icons": "^3.31.0",
"secondnetwork/blade-tabler-icons": "^3.34.0",
"spatie/laravel-json-api-paginate": "^1.16.3",
"spatie/laravel-query-builder": "^6.3.2",
"spatie/laravel-settings": "^3.4.4",
"spatie/laravel-webhook-server": "^3.8.3",
"zircote/swagger-php": "^5.1.1"
"zircote/swagger-php": "^5.1.3"
},
"require-dev": {
"fakerphp/faker": "^1.24.1",
"laravel/pail": "^1.2.2",
"laravel/pail": "^1.2.3",
"laravel/pint": "^1.22.1",
"laravel/sail": "^1.42.0",
"laravel/telescope": "^5.7.0",
"laravel/sail": "^1.43.1",
"laravel/telescope": "^5.9.1",
"laravel/tinker": "^2.10.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.8.0",
"nunomaduro/collision": "^8.8.1",
"pestphp/pest": "^3.8.2",
"pestphp/pest-plugin-laravel": "^3.2",
"spatie/laravel-ignition": "^2.9.1",
@@ -81,8 +81,7 @@
"@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"
"Composer\\Config::disableProcessTimeout"
]
},
"funding": [
Generated
+336 -331
View File
File diff suppressed because it is too large Load Diff
-56
View File
@@ -21,33 +21,7 @@ services:
networks:
- sail
depends_on:
- mysql
- mailpit
# - pgsql
mysql:
image: 'mysql/mysql-server:8.0'
ports:
- '${FORWARD_DB_PORT:-3306}:3306'
environment:
MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
MYSQL_ROOT_HOST: '%'
MYSQL_DATABASE: '${DB_DATABASE}'
MYSQL_USER: '${DB_USERNAME}'
MYSQL_PASSWORD: '${DB_PASSWORD}'
MYSQL_ALLOW_EMPTY_PASSWORD: 1
volumes:
- 'sail-mysql:/var/lib/mysql'
- './docker/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh'
networks:
- sail
healthcheck:
test:
- CMD
- mysqladmin
- ping
- '-p${DB_PASSWORD}'
retries: 3
timeout: 5s
mailpit:
image: 'axllent/mailpit:latest'
ports:
@@ -55,36 +29,6 @@ services:
- '${FORWARD_MAILPIT_DASHBOARD_PORT:-8025}:8025'
networks:
- sail
# pgsql:
# image: 'postgres:17'
# ports:
# - '${FORWARD_DB_PORT:-5432}:5432'
# environment:
# PGPASSWORD: '${DB_PASSWORD:-secret}'
# POSTGRES_DB: '${DB_DATABASE}'
# POSTGRES_USER: '${DB_USERNAME}'
# POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
# volumes:
# - 'sail-pgsql:/var/lib/postgresql/data'
# - './docker/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql'
# networks:
# - sail
# healthcheck:
# test:
# - CMD
# - pg_isready
# - '-q'
# - '-d'
# - '${DB_DATABASE}'
# - '-U'
# - '${DB_USERNAME}'
# retries: 3
# timeout: 5s
networks:
sail:
driver: bridge
volumes:
sail-mysql:
driver: local
# sail-pgsql:
# driver: local
@@ -1,6 +0,0 @@
#!/usr/bin/env bash
/usr/bin/mariadb --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
CREATE DATABASE IF NOT EXISTS testing;
GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%';
EOSQL
-6
View File
@@ -1,6 +0,0 @@
#!/usr/bin/env bash
mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
CREATE DATABASE IF NOT EXISTS testing;
GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%';
EOSQL
-2
View File
@@ -1,2 +0,0 @@
SELECT 'CREATE DATABASE testing'
WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'testing')\gexec
+219 -531
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -12,7 +12,6 @@
"laravel-vite-plugin": "^1.0.0",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.0",
"vite": "^6.2.6",
"concurrently": "^9.0.1"
"vite": "^6.2.6"
}
}
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,5 +1,5 @@
{
"/app.js": "/app.js?id=99e99836705c54c9dc04352a9907bc7f",
"/app.js": "/app.js?id=6a9d3c0fef12c9aadd063e3a357cf7cf",
"/app-dark.css": "/app-dark.css?id=1ea407db56c5163ae29311f1f38eb7b9",
"/app.css": "/app.css?id=de4c978567bfd90b38d186937dee5ccf"
}