This commit is contained in:
f4ilji
2025-01-12 14:43:16 +05:00
parent 34a4516273
commit 0a5ff27966
4 changed files with 76 additions and 1 deletions
+2
View File
@@ -63,6 +63,8 @@ class GenerateSitemap extends Command
$pages = Page::query()
->where('is_visible', true)
->where('code', 200)
->where('path', '!=', null)
->where('is_url', false)
->get();
$this->addUrlsToSitemap($sitemap, $pages, function($page) {
+1
View File
@@ -23,6 +23,7 @@
"laravel/tinker": "^2.8",
"mohamedsabil83/filament-forms-tinyeditor": "^2.3",
"nesbot/carbon": "^2.71",
"predis/predis": "^2.3",
"protonemedia/laravel-cross-eloquent-search": "^3.4",
"pxlrbt/filament-excel": "^2.3",
"shuvroroy/filament-spatie-laravel-backup": "^2.2",
Generated
+62 -1
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "20a76642d9e13d900e9f37fc61f7db80",
"content-hash": "25ebd7fca281d22d4022ea15464d54f2",
"packages": [
{
"name": "anourvalar/eloquent-serialize",
@@ -5666,6 +5666,67 @@
},
"time": "2024-10-13T11:29:49+00:00"
},
{
"name": "predis/predis",
"version": "v2.3.0",
"source": {
"type": "git",
"url": "https://github.com/predis/predis.git",
"reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
"reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^8.0 || ^9.4"
},
"suggest": {
"ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
},
"type": "library",
"autoload": {
"psr-4": {
"Predis\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Till Krüss",
"homepage": "https://till.im",
"role": "Maintainer"
}
],
"description": "A flexible and feature-complete Redis client for PHP.",
"homepage": "http://github.com/predis/predis",
"keywords": [
"nosql",
"predis",
"redis"
],
"support": {
"issues": "https://github.com/predis/predis/issues",
"source": "https://github.com/predis/predis/tree/v2.3.0"
},
"funding": [
{
"url": "https://github.com/sponsors/tillkruss",
"type": "github"
}
],
"time": "2024-11-21T20:00:02+00:00"
},
{
"name": "protonemedia/laravel-cross-eloquent-search",
"version": "3.4.0",
+11
View File
@@ -47,3 +47,14 @@ services:
- MYSQL_PASSWORD=secret
ports:
- "3306:3306"
redis:
image: redis:latest
container_name: ntspi-redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
redis_data: