Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#41 Use ext_conf.php to autoload vendors in TYPO3 7.6 #42

Merged
merged 1 commit into from
Jan 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 24 additions & 16 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,29 @@
* ************************************************************* */

$EM_CONF[$_EXTKEY] = array(
'title' => 'Web2PDF',
'description' => 'This Extension renders the pagecontent to a PDF file. It supports css and uses the library mPDF. This extension is based on the pdf_generator2.',
'category' => 'plugin',
'author' => 'Mittwald CM Service',
'author_company' => 'Mittwald CM Service',
'author_email' => 'opensource@mittwald.de',
'dependencies' => 'extbase,fluid',
'state' => 'stable',
'clearCacheOnLoad' => '1',
'version' => '1.1-dev',
'constraints' => array(
'depends' => array(
'typo3' => '6.0.0-7.6.99',
'extbase' => '6.0.0-7.6.99',
'fluid' => '6.0.0-7.6.99',
)
'title' => 'Web2PDF',
'description' => 'This Extension renders the pagecontent to a PDF file. It supports css and uses the library mPDF. This extension is based on the pdf_generator2.',
'category' => 'plugin',
'author' => 'Mittwald CM Service',
'author_company' => 'Mittwald CM Service',
'author_email' => 'opensource@mittwald.de',
'dependencies' => 'extbase,fluid',
'state' => 'stable',
'clearCacheOnLoad' => '1',
'version' => '1.1-dev',
'constraints' => array(
'depends' => array(
'typo3' => '6.0.0-7.6.99',
'extbase' => '6.0.0-7.6.99',
'fluid' => '6.0.0-7.6.99',
)
),
'autoload' => array(
'psr-4' => array(
'Mittwald\\Web2pdf\\' => 'Classes'
),
'classmap' => array(
'Vendor/mpdf/mpdf'
)
),
);