There is no license information available for the latest version (0.1.1) of this package.

Installs: 35

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 1

pkg:composer/terrence-howard/doc-make

0.1.1 2014-08-18 00:58 UTC

This package is auto-updated.

Last update: 2025-10-15 12:26:23 UTC


README

Please use ide-alias instead.

Doc Make Command

This is a laravel artisan that generates autocomplete files in a similar way to IDE Helper. Instead of generating one file, it creates a directory and copies the classes, functions, and docblocks into separate files for each class. This works well with the vim-php-namespace plugin for instance.

Installation

  1. Install via composer: composer require --dev terrence-howard/doc-make:dev-master
  2. Add the service provider to your app/config/app.php in the providers area: 'TerrenceHoward\DocMake\DocMakeServiceProvider'

Usage

Call the command from within laravel with php artisan doc:make. It will generate dummy classes in the app/autocomplete directory. You can change the directory it saves to with --path=path/to/autocomplete. Remember to put that directory in your .gitignore!

Respect

This class was originally created by Terrence Howard. All credit goes to him.