Skip to content

Commit

Permalink
[BUGFIX] CGL
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed May 10, 2023
1 parent 94c2999 commit 690f056
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
5 changes: 4 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
]
],
'no_leading_import_slash' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_trailing_comma_in_singleline' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_unused_imports' => true,
'concat_space' => ['spacing' => 'one'],
Expand All @@ -67,5 +67,8 @@
->setFinder(
PhpCsFixer\Finder::create()
->exclude('.build')
->exclude('config')
->exclude('node_modules')
->exclude('var')
->in(__DIR__)
);
1 change: 0 additions & 1 deletion Classes/Mail/MailContent.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class MailContent
{

/**
* @param string $template
* @param array $arguments
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

class AuthorNotificationProcessor implements ProcessorInterface
{

/**
* Process the notification
*
Expand Down
21 changes: 11 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"sort-packages": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
Expand Down Expand Up @@ -87,6 +88,8 @@
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"typo3/cms-backend": "^11.5",
"typo3/cms-core": "^11.5",
Expand All @@ -96,24 +99,22 @@
"typo3/cms-form": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-install": "^11.5",
"typo3fluid/fluid": "^2.6",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
"typo3fluid/fluid": "^2.6"
},
"require-dev": {
"bk2k/bootstrap-package": "^13.0",
"bk2k/extension-helper": "^2.0",
"friendsofphp/php-cs-fixer": "^3.14",
"overtrue/phplint": "^2.4",
"typo3/cms-belog": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-seo": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"typo3/cms-seo": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"friendsofphp/php-cs-fixer": "^3.1",
"typo3/testing-framework": "^6.4",
"bk2k/bootstrap-package": "^13.0",
"bk2k/extension-helper": "^2.0",
"overtrue/phplint": "^2.4"
"typo3/testing-framework": "^6.4"
}
}
1 change: 0 additions & 1 deletion ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
}

call_user_func(function () {

// Add new page type:
$GLOBALS['PAGES_TYPES'][\T3G\AgencyPack\Blog\Constants::DOKTYPE_BLOG_POST] = [
'type' => 'web',
Expand Down

0 comments on commit 690f056

Please sign in to comment.