Skip to content
Closed
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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.379",
"aws/aws-sdk-php": "^3.381",
"calebporzio/sushi": "^2.5",
"dedoc/scramble": "^0.13",
"filament/filament": "^5.6",
"gboquizosanchez/filament-log-viewer": "^2.3",
"guzzlehttp/guzzle": "^7.10",
"laravel/framework": "^13.7",
"laravel/framework": "^13.11",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify Laravel framework version and check for security advisories

echo "=== Checking Laravel framework versions ==="
curl -s https://packagist.org/packages/laravel/framework.json | jq -r '.package.versions | keys[] | select(startswith("v13.11"))' | head -10

echo -e "\n=== Checking for security advisories ==="
gh api graphql -f query='
{
  securityVulnerabilities(first: 10, ecosystem: COMPOSER, package: "laravel/framework") {
    nodes {
      advisory {
        summary
        severity
        publishedAt
      }
      vulnerableVersionRange
      firstPatchedVersion {
        identifier
      }
    }
  }
}'

Repository: pelican-dev/panel

Length of output: 2447


🏁 Script executed:

#!/bin/bash
# Check what Laravel versions actually exist on Packagist
echo "=== Checking available Laravel framework versions ==="
curl -s https://packagist.org/packages/laravel/framework.json | jq -r '.package.versions | keys[]' | grep -E "^v13|^v14" | head -20

echo -e "\n=== Checking all major Laravel versions (recent) ==="
curl -s https://packagist.org/packages/laravel/framework.json | jq -r '.package.versions | keys[]' | sort -V | tail -30

echo -e "\n=== Checking specifically for v13.11 ==="
curl -s https://packagist.org/packages/laravel/framework.json | jq '.package.versions | keys[] as $v | select($v | startswith("13.11"))' 2>/dev/null || echo "No v13.11 versions found in JSON"

Repository: pelican-dev/panel

Length of output: 558


Laravel 13.11 does not exist on Packagist. The latest available Laravel 13 version is 13.9.0. Update "laravel/framework": "^13.11" to a released version (e.g., "^13.9.0").

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@composer.json` at line 18, The composer.json dependency for
"laravel/framework" references a non-existent version "^13.11"; update the
requirement to a released version such as "^13.9.0" by editing the
"laravel/framework" entry in composer.json so it uses a valid released
constraint (e.g., change the value for the "laravel/framework" key to
"^13.9.0"), then run composer update to refresh the lockfile.

"laravel/helpers": "^1.8",
"laravel/sanctum": "^4.3",
"laravel/socialite": "^5.27",
"laravel/tinker": "^3.0",
"laravel/ui": "^4.6",
"lcobucci/jwt": "^5.6",
"league/flysystem-aws-s3-v3": "^3.32",
"league/flysystem-aws-s3-v3": "^3.34",
"league/flysystem-memory": "^3.31",
"phiki/phiki": "^2.2",
"phpseclib/phpseclib": "^3.0.52",
Expand All @@ -32,7 +32,7 @@
"socialiteproviders/authentik": "^5.3",
"socialiteproviders/discord": "^4.2",
"socialiteproviders/steam": "^4.3",
"spatie/laravel-data": "^4.22",
"spatie/laravel-data": "^4.23",
"spatie/laravel-fractal": "^6.4",
"spatie/laravel-health": "^1.39",
"spatie/laravel-permission": "^6.25",
Expand Down Expand Up @@ -97,4 +97,4 @@
},
"minimum-stability": "stable",
"prefer-stable": true
}
}
Loading
Loading