-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathext_emconf.php
More file actions
28 lines (27 loc) · 827 Bytes
/
ext_emconf.php
File metadata and controls
28 lines (27 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Dropbox FAL Driver',
'description' => 'Provides a Dropbox driver for TYPO3 File Abstraction Layer.',
'category' => 'service',
'author' => 'Stefan Froemken',
'author_email' => 'froemken@gmail.com',
'state' => 'stable',
'clearCacheOnLoad' => true,
'version' => '6.1.0',
'constraints' => [
'depends' => [
'typo3' => '13.4.12-13.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'StefanFroemken\\Dropbox\\' => 'Classes',
'Spatie\\Dropbox\\' => 'Resources/Private/PHP/spatie/dropbox-api/src',
'GrahamCampbell\\GuzzleFactory\\' => 'Resources/Private/PHP/graham-campbell/guzzle-factory/src',
],
],
];