Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 9, 2024 via composer

barryvdh/laravel-ide-helper v1.9.3

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.
Package summary
Share
1
issue
1
high severity
meta
1
1
license
9
MIT
Package created
10 Mar 2013
Version published
4 Feb 2015
Maintainers
1
Total deps
9
Direct deps
5
License
MIT

Issues

1

1 high severity issue

high
via: symfony/class-loader@v2.8.52
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
9 Packages, Including:
barryvdh/laravel-ide-helper@v1.9.3
illuminate/console@v4.2.17
illuminate/filesystem@v4.2.17
illuminate/support@v4.2.17
phpdocumentor/reflection-docblock@2.0.5
symfony/class-loader@v2.8.52
symfony/console@v2.5.12
symfony/finder@v2.5.12
symfony/polyfill-apcu@v1.29.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

5
All Dependencies CSV
β“˜ This is a list of barryvdh/laravel-ide-helper 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
illuminate/consolev4.2.17-MIT
prod
illuminate/filesystemv4.2.17-MIT
prod
illuminate/supportv4.2.17-MIT
prod
phpdocumentor/reflection-docblock2.0.561.13 kBMIT
prod
symfony/class-loaderv2.8.52-MIT
prod
1

Visualizations

Frequently Asked Questions

What does barryvdh/laravel-ide-helper do?

The barryvdh/laravel-ide-helper is an incredibly useful tool that assists Laravel developers by automatically generating helper files that enable your IDE (Integrated Development Environment) to provide accurate auto-completion. It is a way to create a more efficient and effective coding environment by providing complete PHPDocs, directly sourced from your Laravel project files. This ensures they always stay up-to-date. The package supports Laravel 8+ and PHP 7.3+, making it a versatile tool for most Laravel developers.

How do you use barryvdh/laravel-ide-helper?

Using the Laravel IDE Helper is straightforward and can be summed up in a few steps. In your Laravel project, the package can be installed via composer using the command composer require --dev barryvdh/laravel-ide-helper. After the installation, you have access to several Artisan commands that aid in generating PHPDocs for various aspects of Laravel. Here are few examples:

php artisan ide-helper:generate
php artisan ide-helper:models
php artisan ide-helper:meta

The ide-helper:generate command helps in generating PHPDocs for Laravel Facades, while ide-helper:models helps in generating PHPDocs for models. In turn, the ide-helper:meta command generates PhpStorm Meta file.

Where are the barryvdh/laravel-ide-helper docs?

The documentation for the Laravel IDE Helper package can be found on its GitHub page - https://github.com/barryvdh/laravel-ide-helper.git. The README file in the root directory contains all the necessary details regarding installation, usage, and even advanced features like PHPDoc generation for Laravel Fluent methods, Auto-completion for factory builders, and PhpStorm Meta for Container instances. For more project-specific settings, you can consider publishing the config file via php artisan vendor:publish --provider="Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider" --tag=config.