1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00

Switch autoloading from PSR-0 to PSR-4 (#229)

This commit is contained in:
Louis-Arnaud
2026-01-11 21:34:35 +01:00
committed by GitHub
parent 91384413a2
commit 94548d1031

View File

@@ -27,8 +27,13 @@
"easybook/geshi": "For using GeSHi as code highlighter"
},
"autoload": {
"psr-0": {
"phpdotnet\\": "."
"psr-4": {
"phpdotnet\\phd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"phpdotnet\\phd\\Tests\\": "tests/"
}
}
}