Skip to content

Commit

Permalink
[FEATURE] Implemented base structure for the whole build and testing …
Browse files Browse the repository at this point in the history
…process, executed updated php-cs-fixer settings on all files, restructured lots of classes to make them ready for testing (WIP)
  • Loading branch information
RinyVT committed Oct 10, 2024
1 parent 80ff266 commit 111a6b1
Show file tree
Hide file tree
Showing 113 changed files with 2,953 additions and 1,677 deletions.
67 changes: 0 additions & 67 deletions .Build/.php-cs-fixer.php

This file was deleted.

Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
typo3: ['11', '12', '13']
php: ['php8.2']
php: ['php8.2', 'php8.3']
experimental: [false]
include:
- typo3: '11'
Expand All @@ -36,4 +36,4 @@ jobs:
- name: CGL
run: composer cgl
- name: PHPStan
run: php -d memory_limit=-1 vendor/bin/phpstan analyse -c .Build/phpstan.cms${{ matrix.typo3 }}.neon
run: php -d memory_limit=-1 vendor/bin/phpstan analyse -c Build/phpstan.cms${{ matrix.typo3 }}.neon
2 changes: 1 addition & 1 deletion .github/workflows/ter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
- name: Publish to TER
run: TYPO3_API_USERNAME=${{ secrets.TYPO3_API_USERNAME }} TYPO3_API_PASSWORD=${{ secrets.TYPO3_API_PASSWORD }} TYPO3_API_TOKEN=$(awk '/Access token:(.*)/ { print $3 }' token.txt) TYPO3_EXCLUDE_FROM_PACKAGING=./.Build/ExcludeFromPackaging.php vendor/bin/tailor ter:publish --comment "Check https://github.com/Yoast/Yoast-SEO-for-TYPO3/blob/master/CHANGELOG.md for the latest changes." ${{ steps.get-version.outputs.version }} yoast_seo
run: TYPO3_API_USERNAME=${{ secrets.TYPO3_API_USERNAME }} TYPO3_API_PASSWORD=${{ secrets.TYPO3_API_PASSWORD }} TYPO3_API_TOKEN=$(awk '/Access token:(.*)/ { print $3 }' token.txt) TYPO3_EXCLUDE_FROM_PACKAGING=./Build/ExcludeFromPackaging.php vendor/bin/tailor ter:publish --comment "Check https://github.com/Yoast/Yoast-SEO-for-TYPO3/blob/main/CHANGELOG.md for the latest changes." ${{ steps.get-version.outputs.version }} yoast_seo
10 changes: 2 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@ grunt/node_modules
*.po
vendor
composer.lock
.php_cs.cache
.php-cs-fixer.cache
yarn.lock
.Build/*
!.Build/ExcludeFromPackaging.php
!.Build/.php-cs-fixer.php
!.Build/.phplint.yml
!.Build/phpstan.cms11.neon
!.Build/phpstan.cms12.neon
!.Build/phpstan.cms13.neon
.Build
Documentation-GENERATED-temp
/public
.phplint.cache
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
'tests',
'vendor',
'.Build',
'grunt'
'Build',
'grunt',
],
'files' => [
'.gitignore',
Expand Down Expand Up @@ -57,6 +58,6 @@
'travis.yml',
'webpack.config.js',
'webpack.mix.js',
'yarn.lock'
]
'yarn.lock',
],
];
Loading

0 comments on commit 111a6b1

Please sign in to comment.