Following a call for contributors from Björn Jacob, CEO of TRITUM GmbH, a new TYPO3 Form Initiative Code Sprint was held in Jena from April 25th to 28th. This should be the first bigger chunk of changes which will eventually end up in TYPO3 v10, currently scheduled to be released in April 2020. A few […]
Kategorie: Code

Boost your TYPO3 frontend with RequireJS
RequireJS is popular for building applications with a large number of JavaScript files. We will show you, how you can use it for your TYPO3 sites and why it make sense even in projects with a small amount of scripts.

Manage SSH authorized_keys in PHP
Today we’ll introduce a new convenient package to manage your SSH authorized_keys file via PHP. If you want to manage SSH keys on a remote server, you’d usually use ssh-copy-id to add your public SSH key to the authorized_keys file on the server. This is actually nice since it will ask you for a password for […]

Mocking static method calls in PHP
Static method calls are sometimes necessary due to an existing API or because there is no alternative like injectable services. This makes them basically impossible to mock for unit testing.