This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# etc/nginx/vhost.common.d/10-php.conf | |
location ~ \.php$ { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass php; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $request_filename; | |
fastcgi_read_timeout 1000; | |
<FOO_BAR> | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prototype(Onedrop.Demo:Atom.Button) < prototype(PackageFactory.AtomicFusion:Component) { | |
text = '' | |
type = 'default' | |
size = '' | |
renderer = Neos.Fusion:Tag { | |
tagName = 'button' | |
attributes.class = PackageFactory.AtomicFusion:ClassNames { | |
btn = true | |
btn-default = ${props.type == 'default'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Onedrop\Login\Security\Cryptography; | |
use Neos\Flow\Security\Cryptography\PasswordHashingStrategyInterface; | |
class PhpassSaltedHashingStrategy implements PasswordHashingStrategyInterface | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": [ | |
{ "type": "composer", "url": "https://composer.typo3.org/" } | |
], | |
"name": "typo3/cms-base-distribution", | |
"description" : "TYPO3 CMS Base Distribution", | |
"license": "GPL-2.0+", | |
"require": { | |
"typo3/cms": "dev-master as 8.7.0", | |
"typo3-ter/introduction": "*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Onedrop\FusionSyntax\Command; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Flow\Cli\CommandController; | |
use Neos\ContentRepository\Domain\Service\ContextFactoryInterface; | |
use Neos\Neos\Domain\Service\FusionService; | |
use Onedrop\FusionSyntax\Service\StandaloneFusionService; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": [ | |
{ | |
"type": "package", | |
"package": { | |
"version": "2.0", | |
"type": "neos-plugin", | |
"name": "networkteam/neos-mailobfuscator", | |
"source": { | |
"url": "https://github.com/ComiR/Networkteam.Neos.MailObfuscator.git", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
'Onedrop.Demo:InheritFooterMixin': | |
abstract: true | |
childNodes: | |
sidebar: | |
type: 'TYPO3.Neos:ContentCollection' | |
properties: | |
inheritSidebar: | |
type: boolean | |
defaultValue: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobData = Neos.Fusion:RawArray { | |
'@context' = 'http://schema.org' | |
'@type' = 'JobPosting' | |
baseSalary = 10000 | |
industry = 'Some thing' | |
title = ${q(node).property('title')} | |
jobLocation = Neos.Fusion:RawArray { | |
'@type' = 'Place' | |
address = Neos.Fusion:RawArray { | |
'@type' = 'PostalAddress' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
docker rm -v $(docker ps -a -q -f status=exited) | |
docker rmi $(docker images -f "dangling=true" -q) | |
docker volume ls -qf dangling=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Onedrop\Manuals\TypoScript\Helper; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Eel\ProtectedContextAwareInterface; | |
use TYPO3\TYPO3CR\Domain\Model\NodeInterface; | |
/*************************************************************** | |
* Copyright notice | |
* |