josefglatz / development-only
Development Only settings for TYPO3 CMS projects
Installs: 7 506
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Type:typo3-cms-extension
Requires
- nadar/php-composer-reader: ^2
- typo3/cms-core: ^10 || ^11 || ^12 || ^13.4
Replaces
- typo3-ter/development_only: 2.1.0
README
TYPO3 Extension development-only
Development Only settings for TYPO3 CMS projects
What is it good for?
In a development environment you often need adoptions to better concentrate on the project itself. This extension helps by improving the overall productivity and hides what is not needed in such an environment.
What does the extension offer you?
If you have ideas, snippets which needs to be added, please leave me an Issue.
Each of the features are enabled automatically if the extension is activated and the ApplicationContext is set to Development
.
1. Hide Install Tool Security Check in Reports module (TYPO3 =< 11 LTS only)
\TYPO3\CMS\Install\Report\SecurityStatusReport
is disabled.
- You get no warning if you use
joh316
as Install Tool password. - You get no warning if your Install Tool is activated (forever).
2. Set common $GLOBALS['TYPO3_CONF_VARS'] for development context
SYS/sitename
: Adding the prefix "DEV"SYS/devIPmask
: *SYS/displayErrors
: trueSYS/trustedHostsPattern
: Flexible and not strict valueSYS/exceptionalErrors
: more verbose settingBE/debug
: true, to show field names, ...BE/lockSSL
: true, because with DDEV or any other professional dev environment it's o-o-t-b possible to use ssl localy, ...BE/sessionTimeout
: set to very high valueBE/installToolPassword
: set to classic valuejoh316
FE/sessionTimeout
: set to very high valueFE/debug
: active
3. Disables yoast-seo-for-typo3/yoast_seo in page module
The snippet preview in development context is not working and is disabled via User TSconfig in development context with setup.override.hideYoastInPageModule = 1.
4. Setting backend pagetree settings
- The PageId is always shown next to the page nav-/title
5. Remove the requirement of a multi-factor authentication for a user
This makes it possible to create a temporary user for debug situations without having to deal with MFA things.
Installation
composer require --dev josefglatz/development-only
Since every component works only in the Development Application Context I advice you to require the extension only asrequire-dev
package in your TYPO3 instance. Make sure to usecomposer install --no-dev
while packaging your TYPO3 project for the productive hosting environment.
How to check the installation
For TYPO3 12 and up: You find a status in the TYPO3 report module (if the report module is installed).
- throws an error notice if the extension is active in a non-development context
- in composer mode: throws an error notice if the extension is in "require" section instead of "require-dev" section