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\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. | |
* |
<?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); |
It's a bundle of documentation of languages, projects and other stuff. Easily searchable and can be used offline.
Download: https://devdocs.io
cache: | |
key: "$CI_COMMIT_REF_NAME/$CI_JOB_STAGE" | |
paths: | |
- .composer/ | |
before_script: | |
# Install git on machine | |
- apk add git --update | |
stages: |
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 |
<?php | |
namespace Vendor\Extension\Controller; | |
use SJBR\StaticInfoTables\Domain\Repository\CountryZoneRepository; | |
class DataController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController | |
{ | |
/** | |
* @var \TYPO3\CMS\Extbase\Mvc\View\JsonView | |
*/ |
{ | |
"name": "gitlab-website-test", | |
"version": "1.0.0", | |
"description": "", | |
"main": "Gulpfile.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", |
cache: | |
paths: | |
- /cache/composer | |
stages: | |
- composer | |
- deploy | |
build: | |
stage: composer |