Skip to content

Commit 107f301

Browse files
committed
- Fixed a composer configuration error with a namespace.
1 parent 2079235 commit 107f301

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# CHange Log
1+
# Change Log
2+
3+
## 1.0.1 - 2020/01/20
4+
- Fixed a composer configuration error with a namespace.
25

36
## 1.0.0 - 2020/01/19
47
- Released.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"php": ">=5.6.20"
1515
},
1616
"autoload": {
17-
"psr-4": {"PHPClassMapGenerator": "source/"}
17+
"psr-4": {"PHPClassMapGenerator\\": "source/"}
1818
}
1919
}

source/PHPClassMapGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* This is meant to be used for the callback function for the spl_autoload_register() function.
2020
*
2121
* @remark The parsed class file must have a name of the class defined in the file.
22-
* @version 1.0.0
22+
* @version 1.0.1
2323
*/
2424
class PHPClassMapGenerator extends PHPClassMapGenerator_Base {
2525

source/PHPClassMapGenerator_Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* The base class of script creator.
1414
*
15-
* @version 1.0.0
15+
* @version 1.0.1
1616
*/
1717
class PHPClassMapGenerator_Base {
1818

0 commit comments

Comments
 (0)