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}/": [ |
| cache: | |
| paths: | |
| - /cache/composer | |
| stages: | |
| - composer | |
| - deploy | |
| build: | |
| stage: composer |
| { | |
| "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\Extension\Controller; | |
| use SJBR\StaticInfoTables\Domain\Repository\CountryZoneRepository; | |
| class DataController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController | |
| { | |
| /** | |
| * @var \TYPO3\CMS\Extbase\Mvc\View\JsonView | |
| */ |
| 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 |
| cache: | |
| key: "$CI_COMMIT_REF_NAME/$CI_JOB_STAGE" | |
| paths: | |
| - .composer/ | |
| before_script: | |
| # Install git on machine | |
| - apk add git --update | |
| stages: |
It's a bundle of documentation of languages, projects and other stuff. Easily searchable and can be used offline.
Download: https://devdocs.io
| #!/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); |
| <?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 |
| <?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. | |
| * |