Skip to content

Commit

Permalink
Add TYPO3 13 LTS Support
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSiepmann authored and d-s-codappix committed Oct 17, 2024
1 parent a2fa701 commit 07183d2
Show file tree
Hide file tree
Showing 33 changed files with 878 additions and 746 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
typo3-version: '^12.4'
- php-version: '8.3'
typo3-version: '^12.4'
- php-version: '8.2'
typo3-version: '^13.4'
- php-version: '8.3'
typo3-version: '^13.4'
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -125,6 +129,12 @@ jobs:
- php-version: '8.3'
typo3-version: '^12.4'
db-version: '8'
- php-version: '8.2'
typo3-version: '^13.4'
db-version: '8'
- php-version: '8.3'
typo3-version: '^13.4'
db-version: '8'
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -158,15 +168,3 @@ jobs:
export typo3DatabaseUsername="root"
export typo3DatabasePassword="root"
./vendor/bin/phpunit
tests-acceptance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: cachix/install-nix-action@v24
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Run Acceptance Tests
run: nix-shell --run project-test-acceptance
3 changes: 3 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
$finder = (new PhpCsFixer\Finder())
->ignoreVCSIgnored(true)
->in(realpath(__DIR__))
->notPath([
'Classes/Domain/Import/EntityMapper/CustomAnnotationExtractor.php',
]);
;

return (new \PhpCsFixer\Config())
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/ImportConfigurationCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected function configure(): void
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
Bootstrap::initializeBackendAuthentication();

Expand Down
Loading

0 comments on commit 07183d2

Please sign in to comment.