PHP Package: barryvdh/laravel-ide-helper

Laravel IDE Helper generates PHPDocs for Laravel facades, to improve auto-completion in your IDE.

Current Version: 3.5.5
Last Updated: 2025-02-21
PHP Requirement: ^8.2
Dependencies:
phpdocumentor/reflection
symfony/console
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laravel IDE Helper is a handy tool that enhances Laravel development by providing PHPDocs for Laravel facades, ensuring better auto-completion functionality in various IDEs. By generating accurate PHPDocs, this library streamlines code navigation and offers rich insights into Laravel's vast array of functionalities.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 3.5.5

Download Download v3.5.5

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/barryvdh/laravel-ide-helper/3.5.5/loader.php';
require_once 'libs/phpdocumentor/reflection/6.3.0/loader.php';
require_once 'libs/symfony/console/7.3.0/loader.php';

use Barryvdh\LaravelIdeHelper\Console\Helpers\MetaHelper;
use Barryvdh\LaravelIdeHelper\Console\Helpers\ModelHelper;
use PhpDocumentor\Reflection\DocBlockFactory;

$obj = new MetaHelper();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.