-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [TASK] Raise version constrain for TYPO3 to be v12 * [TASK] Require qbnk/qbank3api-phpwrapper v6.3 * [TASK] Add dependency v7.0 for qbnk/qbank3api-phpwrapper * [BUGFIX] Change ext_ files using "defined('TYPO3') or die();" * [WIP][TASK] Add compatibility with TYPO3 v12 * [TASK] Add version to be only 12.4 and up * [TASK] Add version to 12.0.0-12.4.99 * [TASK] TYPO3 Rector upgrades * [TASK] Adjust CI to be TYPO3 v12 and PHP 8.1 * [WIP] add button to TCA type 'file', possible Qbank element browser. * [WIP] remove element browser and replave with javascript * [WIP] js updates, labels, qbank service update T3v12 * [WIP] continue with BE module and templates * [WIP] be module functions * [WIP] remove unused config and script * [WIP] updates for tests, ci style fixes * [BUGFIX] fix path to lll file by ci fix * [WIP] update ci configuration * [TASK] bump version --------- Co-authored-by: Mattias Nilsson <[email protected]>
- Loading branch information
1 parent
a599bfa
commit 0869a16
Showing
60 changed files
with
2,129 additions
and
1,692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
/*.idea | ||
/.Build/* | ||
/.fleet | ||
/.php-cs-fixer.cache | ||
/.phpunit.result.cache | ||
/.php_cs.cache | ||
/Documentation-GENERATED-temp/ | ||
/Resources/Private/node_modules/ | ||
/Resources/Private/package-lock.json | ||
/Resources/Private/yarn-error.log | ||
/Resources/Private/yarn.lock | ||
/composer.lock | ||
/nbproject | ||
/var | ||
/build | ||
/clover.xml | ||
/node_modules/ | ||
/package-lock.json | ||
/yarn-error.log | ||
/yarn.lock | ||
Build/testing-docker/.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
$config = \TYPO3\CodingStandards\CsFixerConfig::create(); | ||
$config->getFinder()->in('Classes')->in('Configuration')->in('Tests'); | ||
return $config; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" backupGlobals="true" bootstrap="FunctionalTestsBootstrap.php" cacheResult="false" colors="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" failOnWarning="true" cacheDirectory=".phpunit.cache" requireCoverageMetadata="false"> | ||
<testsuites> | ||
<testsuite name="Functional tests"> | ||
<directory>../Tests/Functional/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<const name="TYPO3_MODE" value="BE"/> | ||
<ini name="display_errors" value="1"/> | ||
<env name="TYPO3_CONTEXT" value="Testing"/> | ||
</php> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/* | ||
* This file is part of the TYPO3 CMS project. | ||
* | ||
* It is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License, either version 2 | ||
* of the License, or any later version. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE.txt file that was distributed with this source code. | ||
* | ||
* The TYPO3 project - inspiring people to share! | ||
*/ | ||
|
||
call_user_func(function () { | ||
$testbase = new \TYPO3\TestingFramework\Core\Testbase(); | ||
$testbase->defineOriginalRootPath(); | ||
$testbase->createDirectory(ORIGINAL_ROOT . 'typo3temp/var/tests'); | ||
$testbase->createDirectory(ORIGINAL_ROOT . 'typo3temp/var/transient'); | ||
}); |
Oops, something went wrong.