It's a bundle of documentation of languages, projects and other stuff. Easily searchable and can be used offline.
Download: https://devdocs.io
### Keybase proof | |
I hereby claim: | |
* I am SpoonerWeb on github. | |
* I am spoonerweb (https://keybase.io/spoonerweb) on keybase. | |
* I have a public key whose fingerprint is 1546 09BD 23E0 774A 218F 1AD6 FD07 5A11 56B5 F86D | |
To claim this, I am signing this object: |
<?php | |
namespace Vendor\ExtensionKey\Html; | |
/** | |
* 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 |
#!/usr/bin/php | |
<?php | |
$ref = trim($argv[2]); | |
$diff = array(); | |
$return = 0; | |
exec("git diff --name-only $argv[1] $ref 2> /dev/null", $diff, $return); |
{ | |
"name": "gitlab-website-test", | |
"version": "1.0.0", | |
"description": "", | |
"main": "Gulpfile.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", |
<?php | |
namespace Vendor\ExtensionKey\Helpers; | |
/** | |
* 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. | |
* |
It's a bundle of documentation of languages, projects and other stuff. Easily searchable and can be used offline.
Download: https://devdocs.io
{ | |
"name": "spooner/wordpress", | |
"type": "project", | |
"config": { | |
"vendor-dir": "content/vendor" | |
}, | |
"extra": { | |
"wordpress-install-dir": "wp", | |
"installer-paths": { | |
"content/plugins/{$name}/": [ |
APIVersion: v1.13.1 | |
name: typo3.org | |
type: typo3 | |
docroot: public | |
php_version: "7.4" | |
webserver_type: nginx-fpm | |
router_http_port: "80" | |
router_https_port: "443" | |
xdebug_enabled: false | |
additional_hostnames: [] |
GitLab CI/CD for website projects (example: typo3.org): | |
Yaml configuration: https://git-t3o.typo3.org/t3o/typo3.org/blob/develop/.gitlab-ci.yml | |
Deployer: https://git-t3o.typo3.org/t3o/typo3.org/blob/develop/.gitlab-ci/deployer/deploy.php | |
GitLab CI/CD for extensions: | |
Yaml configuration with tests and TER release: https://git.spooner.io/spooner/be_secure_pw/blob/master/.Build/ci/.gitlab-ci.yml |
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['flexFormSegment'][\TYPO3\CMS\Backend\Form\FormDataProvider\PageTsConfig::class] = []; | |
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['flexFormSegment'][\TYPO3\CMS\Backend\Form\FormDataProvider\PageTsConfigMerged::class] = [ | |
'depends' => [ | |
\TYPO3\CMS\Backend\Form\FormDataProvider\PageTsConfig::class, | |
] | |
]; | |
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['flexFormSegment'][\TYPO3\CMS\Backend\Form\FormDataProvider\DatabaseRowDefaultValues::class] = [ | |
'depends' => [ | |
\TYPO3\CMS\Backend\Form\FormDataProvider\PageTsConfigMerged::class | |
] |