wbouakline / eloquent-ide-helper
There is no license information available for the latest version (dev-master) of this package.
Using `barryvdh/laravel-ide-helper` without laravel framework.
dev-master
2025-03-24 11:13 UTC
Requires
- php: >=5.6
- barryvdh/laravel-ide-helper: ^2.8
- doctrine/dbal: ^2.5
- illuminate/container: v7.30.3
- illuminate/filesystem: v7.30.3
Requires (Dev)
- likesistemas/eloquent-external: ^1.1
- phpunit/phpunit: ^5.0 || ^9.0
This package is auto-updated.
Last update: 2025-04-24 11:16:37 UTC
README
Installation
composer require --dev wbouakline/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.