This file contains hidden or 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
{ | |
"name": "vendor/ext-key", | |
"description": "Essential composer.json attributes", | |
"keywords": ["typo3", "extension", "composer.json"], | |
"homepage": "http://helhum.io", | |
"authors": [ | |
{ | |
"name": "Helmut Hummel", | |
"email": "[email protected]" | |
} |
This file contains hidden or 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
{ | |
"autoload": { | |
"files": ["res/fix-env.php"] | |
} | |
} |
This file contains hidden or 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
#!/bin/bash | |
set -e | |
# insert a line to a file if the line does not already exist | |
# - first parameter is the file to insert the line | |
# - second parameter is the line to insert. It'll only be inserted if not already exists | |
# - third parameter is optional. This will override the search behavior. | |
# Instead of searching for the line of parameter 2 this term is used. | |
function insertLineIfNotExists { | |
FILE=$1 |
This file contains hidden or 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
{ | |
"require": { | |
"typo3-console/composer-auto-setup": "^0.1", | |
"georgringer/news": "^6.1", | |
"helhum/typo3-secure-web": "^0.2.5", | |
"typo3/cms-introduction": "^3.0" | |
}, | |
"extra": { | |
"typo3/cms": { | |
"cms-package-dir": "{$vendor-dir}/typo3/cms", |
This file contains hidden or 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
<?php | |
$data = array( | |
'AddThis_SharingTool_Block_Share' => 'app/code/community/AddThis/SharingTool/Block/Share.php', | |
'AddThis_SharingTool_Model_Observer' => 'app/code/community/AddThis/SharingTool/Model/Observer.php', | |
'Amasty_Base_Model_Feed' => 'app/code/local/Amasty/Base/Model/Feed.php', | |
'Amasty_Promo_Helper_Data' => 'app/code/local/Amasty/Promo/Helper/Data.php', | |
'Amasty_Promo_Model_Observer' => 'app/code/local/Amasty/Promo/Model/Observer.php', | |
'Amasty_Rules_Block_Adminhtml_Promo_Quote_Edit' => 'app/code/local/Amasty/Rules/Block/Adminhtml/Promo/Quote/Edit.php', | |
'Amasty_Rules_Block_Checkout_Discount' => 'app/code/local/Amasty/Rules/Block/Checkout/Discount.php', |
This file contains hidden or 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
<?php | |
declare(strict_types=1); | |
namespace Helhum\SitePackage\Cache\Frontend; | |
use TYPO3\CMS\Core\Cache\Backend\BackendInterface; | |
use TYPO3\CMS\Core\Cache\Frontend\VariableFrontend; | |
use TYPO3\CMS\Core\Core\Environment; | |
use TYPO3\CMS\Core\Http\ServerRequestFactory; | |
class CacheWarmingFrontend extends VariableFrontend |
This file contains hidden or 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
<?php | |
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility; | |
use TYPO3\CMS\Extbase\Utility\ExtensionUtility; | |
(static function (): void { | |
$columns = [ | |
'tx_turbo_wrap_in_frame' => [ | |
'label' => 'Wrap in Turbo frame', |
This file contains hidden or 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
<?php | |
declare(strict_types=1); | |
namespace Dkn\SitePackage\Configuration\ImageVariants; | |
use Helhum\TopImage\Definition; | |
use Helhum\TopImage\TCA\ImageVariantConfigurationInterface; | |
class ANewsImageVariantExample implements ImageVariantConfigurationInterface | |
{ |
OlderNewer