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 | |
| declare(strict_types=1); | |
| namespace Some\Package\Security; | |
| use Neos\Cache\CacheAwareInterface; | |
| use Neos\Flow\Annotations as Flow; | |
| /** | |
| * @Flow\Scope("singleton") | |
| */ |
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
| version: '2' | |
| services: | |
| api: | |
| volumes: | |
| - "nfsmount:${CONTAINER_DIR}" | |
| volumes: | |
| nfsmount: | |
| driver: local | |
| driver_opts: |
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
| { | |
| "require": { | |
| "typo3-console/composer-auto-setup": "^0.1", | |
| "georgringer/news": "^6.1", | |
| "helhum/typo3-secure-web": "^0.2.5", | |
| "typo3/cms-introduction": "^3.0" | |
| }, | |
| "extra": { | |
| "typo3/cms": { | |
| "cms-package-dir": "{$vendor-dir}/typo3/cms", |
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 Acme\Api\Controller; | |
| use Acme\Api\Domain\Repository\ResourceRepository; | |
| use Acme\Api\Utility\AggregateReflectionHelper; | |
| use Acme\Api\Utility\ResourceTypeHelper; | |
| use Acme\Api\Utility\ViewConfigurationHelper; | |
| use Doctrine\Common\Inflector\Inflector; |
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 Famelo\Saas\Domain\Model; | |
| use Doctrine\ORM\Mapping as ORM; | |
| use TYPO3\Flow\Annotations as Flow; | |
| /** | |
| * @Flow\Entity | |
| */ | |
| class Example { | |
| /** |
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
| TYPO3: | |
| Flow: | |
| # disable reflection for non psr-0 compliant 3rd party packages | |
| object: | |
| excludeClasses: | |
| 'gedmo.doctrineextensions' : ['Gedmo\\.*'] | |
| # register soft deletable filter & event listeners | |
| persistence: | |
| doctrine: |
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 My\Package\Validation; | |
| use TYPO3\Flow\Persistence\RepositoryInterface; | |
| class ExistsValidator extends \TYPO3\Flow\Validation\Validator\AbstractValidator { | |
| /** | |
| * @var array | |
| */ |