Skip to content

Commit

Permalink
[TASK] Followup
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer committed Jul 2, 2024
1 parent 508c2fa commit e46a1fa
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# rest matrix jobs be executed anyway.
fail-fast: false
matrix:
php: [ '8.1', '8.2' ]
php: [ '8.2', '8.3' ]
composerInstall: [ 'composerInstallLowest', 'composerInstallHighest' ]
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ handleDbmsAndDriverOptions() {

# Load help text into $HELP
read -r -d '' HELP <<EOF
studiomitte/friendlycaptcha test runner. Execute unit test suite and some other details.
studiomitte/csv2xlf test runner. Execute unit test suite and some other details.
Also used by github for test execution.
Recommended docker version is >=20.10 for xdebug break pointing to work reliably, and
Expand Down Expand Up @@ -225,7 +225,7 @@ POSTGRES_VERSION="10"
USED_XDEBUG_MODES="debug,develop"
#@todo the $$ would add the current process id to the name, keeping as plan b
#PROJECT_NAME="runTests-$(basename $(dirname $ROOT_DIR))-$(basename $ROOT_DIR)-$$"
PROJECT_NAME="runtestsfriendlycaptcha"
PROJECT_NAME="csv2xlf"
PROJECT_NAME="${PROJECT_NAME//[[:blank:]]/}"
echo $PROJECT_NAME

Expand Down
2 changes: 1 addition & 1 deletion Build/php-cs-fixer/php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$config = \TYPO3\CodingStandards\CsFixerConfig::create();
$config->setHeader(
'This file is part of the "friendlycaptcha" Extension for TYPO3 CMS.
'This file is part of the "csv2xlf" Extension for TYPO3 CMS.
For the full copyright and license information, please read the
LICENSE.txt file that was distributed with this source code.',
Expand Down
29 changes: 28 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
"typo3/cms-core": "^12, ^13",
"league/csv": "^9.16"
},
"require-dev": {
"typo3/cms-composer-installers": "^3.1.3 || 4.0.0-RC1 || ^5.0",
"typo3/testing-framework": "^7.0.1",
"typo3/cms-form": "^11.5.30 || ^12.4.5",
"phpunit/phpunit": "^9",
"typo3/coding-standards": "^0.5.3",
"friendsofphp/php-cs-fixer": "^3.51.0",
"webmozart/assert": "^1.11.0"
},
"autoload": {
"psr-4": {
"StudioMitte\\Csv2Xlf\\": "Classes"
Expand All @@ -25,7 +34,25 @@
},
"extra": {
"typo3/cms": {
"extension-key": "csv2xlf"
"extension-key": "csv2xlf",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"scripts": {
"cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
}
}
12 changes: 6 additions & 6 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?php

$EM_CONF[$_EXTKEY] = [
'title' => 'Integration of Friendly Captcha',
'description' => 'FriendlyCaptcha Integration for EXT:powermail and EXT:form and your custom implementation',
'category' => 'plugin',
'title' => 'Convert CSV to XLF',
'description' => 'Provide command to convert given csv to a XLF file',
'category' => 'misc',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.9.99',
'typo3' => '12.4.0-12.9.99',
],
'conflicts' => [
],
],
'autoload' => [
'psr-4' => [
'StudioMitte\\FriendlyCaptcha\\' => 'Classes',
'StudioMitte\\Csv2Xlf\\' => 'Classes',
],
],
'state' => 'beta',
'version' => '0.1.6',
'version' => '0.1.0',
];

0 comments on commit e46a1fa

Please sign in to comment.