Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-10-23 21:57:21 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-10-24 21:40:13 +0300
commit21f129dd4686caf8e60cd51eb912d223c7dd44ad (patch)
treea0ecf4c6323143d76dc612c5d225940141e388ce /apps/oauth2/composer/composer.json
parent9e296748ddddbe20a53cfb1bef0e28873a90235f (diff)
OAuth2 autoloader
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/composer/composer.json')
-rw-r--r--apps/oauth2/composer/composer.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/oauth2/composer/composer.json b/apps/oauth2/composer/composer.json
new file mode 100644
index 00000000000..95fe2e1604e
--- /dev/null
+++ b/apps/oauth2/composer/composer.json
@@ -0,0 +1,13 @@
+{
+ "config" : {
+ "vendor-dir": ".",
+ "optimize-autoloader": true,
+ "authorative-autoloader": true,
+ "autoloader-suffix": "OAuth2"
+ },
+ "autoload" : {
+ "psr-4": {
+ "OCA\\OAuth2\\": "../lib/"
+ }
+ }
+}