Issues (153)

ext_emconf.php (1 issue)

Severity
1
<?php
2
3
########################################################################
4
# Extension Manager/Repository config file for ext: "aimeos"
5
#
6
# Manual updates:
7
# Only the data in the array - anything else is removed by next write.
8
# "version" and "dependencies" must not be touched!
9
########################################################################
10
11
$EM_CONF['aimeos'] = [
12
    'title' => 'Aimeos shop and e-commerce framework',
13
    'description' => 'Professional, full-featured and ultra-fast TYPO3 e-commerce extension for online shops, complex B2B applications and #gigacommerce. Turns TYPO3 into the best platform for content commerce and your e-commerce requirements (also available as TYPO3 distribution)',
14
    'category' => 'plugin',
15
    'version' => '22.10.0-dev',
16
    'module' => '',
17
    'state' => 'beta',
18
    'modify_tables' => '',
19
    'clearcacheonload' => 1,
20
    'author' => 'Aimeos',
21
    'author_email' => '[email protected]',
22
    'author_company' => '',
23
    'constraints' => [
24
        'depends' => [
25
            'php' => '7.2.0-8.99.99',
26
            'typo3' => '11.5.0-12.99.99',
27
            'scheduler' => '11.5.0-12.99.99',
28
        ],
29
        'conflicts' => [
30
        ],
31
        'suggests' => [
32
        ],
33
    ],
34
    'autoload' => [
35
        'psr-4' => [
36
            'Aimeos\\Aimeos\\' => 'Classes',
37
        ],
38
    ],
39
];
40
41
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...
42