-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Add test case for string array key in emconf
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
tests/Unit/Fixtures/EmConf/emconf_valid_string_array_key.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
$EM_CONF['my_extension'] = [ | ||
'title' => 'My extension', | ||
'description' => 'Great extension - everyone needs it', | ||
'category' => 'be', | ||
'author' => 'John Doe', | ||
'author_email' => 'john@acme.com', | ||
'state' => 'stable', | ||
'uploadfolder' => 0, | ||
'clearCacheOnLoad' => 1, | ||
'author_company' => 'ACME Corporation', | ||
'version' => '1.0.0', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '10.0.0-11.99.99', | ||
] | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters