diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-10 09:59:30 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-03-09 16:53:27 +0100 |
commit | f7729cdc403a8d4c5a4e9e75e3142bcb51b7250e (patch) | |
tree | 0f11b67bbf707e777dd5f1497cff3d9f85dbaea5 /lib/composer/autoload.php | |
parent | 0cc53ee06dafbd3984bbf1d554585a5731b500a9 (diff) | |
download | nextcloud-server-f7729cdc403a8d4c5a4e9e75e3142bcb51b7250e.tar.gz nextcloud-server-f7729cdc403a8d4c5a4e9e75e3142bcb51b7250e.zip |
Add composers default autoloader to core
This introduces the defacto standard PSR-4 autoloader from composer into
core. This will allow proper PSR-4 naming of our classes.
Since our original autoloader is still available we can slowly switch
over classes to PSR-4.
Diffstat (limited to 'lib/composer/autoload.php')
-rw-r--r-- | lib/composer/autoload.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/composer/autoload.php b/lib/composer/autoload.php new file mode 100644 index 00000000000..610dbf34bca --- /dev/null +++ b/lib/composer/autoload.php @@ -0,0 +1,7 @@ +<?php + +// autoload.php @generated by Composer + +require_once __DIR__ . '/composer' . '/autoload_real.php'; + +return ComposerAutoloaderInit53792487c5a8370acc0b06b1a864ff4c::getLoader(); |