TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/env php
<?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!
*/
/**
* Command Line Interface module dispatcher
* that executes commands
*/
call_user_func(static function () {
$classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
\TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(4, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_CLI);
\TYPO3\CMS\Core\Core\Bootstrap::init($classLoader, true)->get(\TYPO3\CMS\Core\Console\CommandApplication::class)->run();
});
@@ -0,0 +1,41 @@
<?php
return [
'typo3/cms-adminpanel',
'typo3/cms-backend',
'typo3/cms-belog',
'typo3/cms-beuser',
'typo3/cms-core',
'typo3/cms-dashboard',
'typo3/cms-extbase',
'typo3/cms-extensionmanager',
'typo3/cms-felogin',
'typo3/cms-filelist',
'typo3/cms-filemetadata',
'typo3/cms-fluid',
'typo3/cms-fluid-styled-content',
'typo3/cms-form',
'typo3/cms-frontend',
'typo3/cms-impexp',
'typo3/cms-indexed-search',
'typo3/cms-info',
'typo3/cms-install',
'typo3/cms-linkvalidator',
'typo3/cms-lowlevel',
'typo3/cms-opendocs',
'typo3/cms-reactions',
'typo3/cms-recordlist',
'typo3/cms-recycler',
'typo3/cms-redirects',
'typo3/cms-reports',
'typo3/cms-rte-ckeditor',
'typo3/cms-scheduler',
'typo3/cms-seo',
'typo3/cms-styleguide',
'typo3/cms-sys-note',
'typo3/cms-tstemplate',
'typo3/cms-viewpage',
'typo3/cms-webhooks',
'typo3/cms-workspaces',
'typo3/theme-camino',
];
+33
View File
@@ -0,0 +1,33 @@
<?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(static function () {
$classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
\TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run();
$isInstallToolDirectAccess = false;
if (class_exists(\TYPO3\CMS\Install\Http\Application::class)) {
$isInstallToolDirectAccess = isset($_GET['__typo3_install']);
}
$container = \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader, $isInstallToolDirectAccess);
if ($container->has(\TYPO3\CMS\Core\Http\Application::class)) {
$container->get(\TYPO3\CMS\Core\Http\Application::class)->run();
return;
}
$container->get(\TYPO3\CMS\Install\Http\Application::class)->run();
});