likesistemas / eloquent-ide-helper
Using `barryvdh/laravel-ide-helper` without laravel framework.
Installs: 19 931
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 4
Open Issues: 1
pkg:composer/likesistemas/eloquent-ide-helper
Requires
- php: >=7.4
- barryvdh/laravel-ide-helper: ^2.14
- doctrine/dbal: ^3.0
- illuminate/container: ^8.0
- illuminate/filesystem: ^8.0
Requires (Dev)
- likesistemas/eloquent-external: ^2.1
- limedeck/phpunit-detailed-printer: ^6.0
- php-parallel-lint/php-parallel-lint: ^1.4
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^9.0
- rector/rector: ^2.1
- symplify/easy-coding-standard: ^12.5
This package is auto-updated.
Last update: 2025-10-27 20:22:20 UTC
README
Installation
composer require --dev likesistemas/eloquent-ide-helper
How to configure?
To configure it, create a ide-helper.php file in the project root (where composer.json is located) and define the settings that barryvdh/laravel-ide-helper defines in its documentation.
use Like\Eloquent\IdeHelper\Config; return new Config([ 'ide-helper.model_locations' => [ 'sql/models/' ], ]);
Usage
A binary called ide-helper is available which can be used with the same functionality as the original library.
ide-helper models # Create the models.
Thanks
To assemble this library I used the reference of a task from the main repository, thanks @mfn for the guidelines.