-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass-map.php
22 lines (22 loc) · 1.16 KB
/
class-map.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* PHP Class Map Generator
*
* Helps generate class maps of PHP files. The feature includes generating path lists of specified file types.
*
* @url https://github.com/michaeluno/php-classmap-generator
* @author Michael Uno <michael@michaeluno.jp>
* @copyright 2020- (c) Michael Uno
* @license MIT <http://opensource.org/licenses/MIT>
* @version 1.3.0
*/
return array(
"PHPClassMapGenerator\\PHPClassMapGenerator" => __DIR__ . "/PHPClassMapGenerator.php",
"PHPClassMapGenerator\\interfacePHPClassMapGenerator" => __DIR__ . "/interfacePHPClassMapGenerator.php",
"PHPClassMapGenerator\\FileSystem\\FileListGenerator" => __DIR__ . "/FileSystem/FileListGenerator.php",
"PHPClassMapGenerator\\FileSystem\\traitFileSearch" => __DIR__ . "/FileSystem/traitFileSearch.php",
"PHPClassMapGenerator\\Header\\HeaderGenerator" => __DIR__ . "/Header/HeaderGenerator.php",
"PHPClassMapGenerator\\Utility\\AutoLoad" => __DIR__ . "/Utility/AutoLoad.php",
"PHPClassMapGenerator\\Utility\\traitCodeParser" => __DIR__ . "/Utility/traitCodeParser.php",
"PHPClassMapGenerator\\Utility\\traitPath" => __DIR__ . "/Utility/traitPath.php",
);