Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo3 13 compatibility #33

Merged
merged 21 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d15c8aa
[TASK] Fixed git workflows
hojalatheef Nov 27, 2024
df91712
[TASK] Fixed documentation formats
hojalatheef Nov 27, 2024
d745fbc
[TASK] Fixed new ersion related infos
hojalatheef Nov 27, 2024
4030b41
[TASK] Updated Testing Suite
hojalatheef Nov 27, 2024
e5de004
[TASK] Fixed Code formatting
hojalatheef Nov 27, 2024
0dbed5b
[TASK] Removed default option and added description
hojalatheef Nov 27, 2024
0cd366a
[TASK] Added HeaderComment
hojalatheef Nov 27, 2024
9f729f5
[TASK] Composer Normalized fixes
hojalatheef Nov 27, 2024
63e18f2
[TASK] Fixed functional test cases
hojalatheef Nov 29, 2024
c1231b1
[TASK] Updated README file
hojalatheef Nov 29, 2024
af03e40
[TASK] Fixed CGL issues
hojalatheef Nov 29, 2024
551be55
[TASK] Removed phpstan
hojalatheef Nov 29, 2024
87d1bb6
[TASK] Removed Unit Tests
hojalatheef Nov 29, 2024
65407cd
Update Build/phpstan/phpstan.neon
hojalatheef Dec 2, 2024
26af1b7
Update Build/phpstan/phpstan-baseline.neon
hojalatheef Dec 2, 2024
ec12ab9
[TASK] Removed php unit dependeny as it is part of testing framework
hojalatheef Dec 2, 2024
145469a
[TASK] Removed named parameter for integer
hojalatheef Dec 2, 2024
3ee6691
[TASK] Replaced willReturnOnConsecutiveCalls function
hojalatheef Dec 2, 2024
166f89f
Merge remote-tracking branch 'origin/typo3_13_compatibility' into typ…
hojalatheef Dec 2, 2024
505091d
[TASK] Removed typo3 12 compatibilites
hojalatheef Dec 2, 2024
39ab473
[TASK] Fixed prepared statement usage in query in command controller
hojalatheef Dec 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Tests

on: [pull_request]

jobs:
testing:
name: Testing

runs-on: ubuntu-latest

strategy:
fail-fast: true

matrix:
php:
- '8.2'
- '8.3'

steps:
- name: 'Checkout'
uses: actions/checkout@v4

- name: 'Lint PHP'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint

- name: 'Install testing system'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate

- name: 'Composer validate'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate

- name: 'Composer normalize'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerNormalize -n

- name: 'CGL'
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -s cgl

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mysql -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional
47 changes: 0 additions & 47 deletions .github/workflows/typo3_11.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/typo3_12.yml

This file was deleted.

Loading