add psr-4 autoload to composer.json

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-12-18 08:40:04 +01:00
parent c3cc3d1f62
commit c7e5df95e7

View File

@@ -41,7 +41,7 @@
"ext-curl" : "*", "ext-curl" : "*",
"ext-json" : "*", "ext-json" : "*",
"ext-openssl": "*" "ext-openssl": "*"
}, },
"require-dev" : { "require-dev" : {
"phpunit/phpunit" : "6.5.13", "phpunit/phpunit" : "6.5.13",
"pdepend/pdepend" : "2.5.0", "pdepend/pdepend" : "2.5.0",
@@ -58,5 +58,12 @@
"suggest" : { "suggest" : {
"ext-bcmath" : "*", "ext-bcmath" : "*",
"ext-zip" : "*" "ext-zip" : "*"
},
"autoload" : {
"psr-4" : {
"Froxlor\\" : [
"lib/Froxlor"
]
}
} }
} }