piotrpress/composer-classmapper

This Composer command generates a classmap.php file based on project files.

v3.1.0 2024-03-27 15:47 UTC

This package is auto-updated.

Last update: 2024-04-11 16:40:49 UTC


README

This Composer command generates a classmap.php file based on project files.

NOTE: The command can be executed in projects without composer.json file too.

Installation

  1. Add the command as a global composer plugin:
$ composer global require piotrpress/composer-classmapper
  1. Allow plugin execution:
$ composer config -g allow-plugins.piotrpress/composer-classmapper true

Usage

  1. Execute the command in project's directory:
$ composer map [-e|--exclude [REGEX]]

NOTE: The option exclude is regex that matches file paths to be excluded from the classmap.

  1. After the command execution, simply include autoload file in the project:
require __DIR__ . '/autoload.php';

Example

$ composer map -e"#/vendor/composer/(.*)#"

License

MIT