├── .gitattributes
├── Neos.Flow
├── Documentation
│ ├── _build
│ │ └── .gitignore
│ ├── _static
│ │ └── .gitignore
│ ├── _templates
│ │ └── .gitignore
│ ├── requirements.in
│ ├── TheDefinitiveGuide
│ │ ├── PartV
│ │ │ ├── ReleaseNotes
│ │ │ │ └── index.rst
│ │ │ ├── CodingGuideLines
│ │ │ │ ├── index.rst
│ │ │ │ ├── Images
│ │ │ │ │ ├── PHP_TrueFalse.jpg
│ │ │ │ │ └── Flow_Coding_Guidelines_on_one_page.png
│ │ │ │ └── Pdf
│ │ │ │ │ └── Flow_Coding_Guidelines_on_one_page.pdf
│ │ │ ├── ChangeLogs
│ │ │ │ ├── index.rst
│ │ │ │ ├── 901.rst
│ │ │ │ └── 8311.rst
│ │ │ └── index.rst
│ │ ├── PartII
│ │ │ ├── Images
│ │ │ │ ├── EditPost.png
│ │ │ │ ├── PostIndex.png
│ │ │ │ ├── Welcome.png
│ │ │ │ ├── MyFirstBlog.png
│ │ │ │ ├── UpdatedPost.png
│ │ │ │ ├── CreateNewPost.png
│ │ │ │ ├── CreatedNewPost.png
│ │ │ │ ├── DomainModel-1.png
│ │ │ │ ├── DomainModel-2.png
│ │ │ │ ├── DomainModel-3.png
│ │ │ │ ├── DomainModel-4.png
│ │ │ │ ├── DomainModel-5.png
│ │ │ │ ├── RoutingLogTail.png
│ │ │ │ ├── EditURLWithUUID.png
│ │ │ │ ├── FreshBlogPackage.png
│ │ │ │ ├── BlogActionRoute2URI.png
│ │ │ │ ├── PostActionRoute1URI.png
│ │ │ │ ├── LayoutTemplatePartial.png
│ │ │ │ ├── CreateActionWithoutArgument.png
│ │ │ │ ├── CreateNewPostValidationError1.png
│ │ │ │ └── CreateNewPostValidationError2.png
│ │ │ └── index.rst
│ │ ├── PartI
│ │ │ ├── Images
│ │ │ │ ├── ddd-lifecycle1.png
│ │ │ │ └── ddd-lifecycle2.png
│ │ │ └── index.rst
│ │ ├── PartIII
│ │ │ └── Images
│ │ │ │ ├── Error_ReferenceCode.png
│ │ │ │ ├── Http_ApplicationFlow.png
│ │ │ │ ├── Http_MiddlewaresChain.png
│ │ │ │ ├── Security_FilterFirewall.png
│ │ │ │ ├── AOPFramework_AdviceChain.png
│ │ │ │ ├── Persistence_QueryProcess.png
│ │ │ │ ├── Persistence_BlogDomainModel.png
│ │ │ │ ├── Persistence_PersistenceProcess.png
│ │ │ │ ├── AOPFramework_ProxyBuildingProcess.png
│ │ │ │ ├── Security_BasicAuthenticationProcess.png
│ │ │ │ ├── Security_BasicAuthorizationProcess.png
│ │ │ │ └── Security_FailedAuthorizationProcess.png
│ │ └── index.rst
│ ├── Quickstart
│ │ └── Images
│ │ │ ├── Welcome.png
│ │ │ └── CoffeeBeanController.png
│ ├── Flow_Coding_Guidelines_on_one_page.odt
│ └── StyleGuide
│ │ └── index.rst
├── Tests
│ ├── Unit
│ │ ├── Configuration
│ │ │ └── Fixture
│ │ │ │ ├── YmlThrowsException.yaml
│ │ │ │ ├── YmlThrowsException.yml
│ │ │ │ ├── SplitYamlConfigurationFile.aaa.yaml
│ │ │ │ ├── SplitYamlConfigurationFile.yaml
│ │ │ │ ├── SplitYamlConfigurationFile.zzz.yaml
│ │ │ │ ├── SplitYamlConfigurationFileWithoutDot.yaml
│ │ │ │ └── YAMLConfigurationFile.yaml
│ │ ├── Reflection
│ │ │ └── Fixture
│ │ │ │ ├── FileWithNoClass.php
│ │ │ │ ├── DummyClass.php
│ │ │ │ ├── ParentClass1.php
│ │ │ │ ├── DummyFinalClass.php
│ │ │ │ ├── AliasedClass.php
│ │ │ │ ├── DummyAbstractClass.php
│ │ │ │ ├── DummyInterface1.php
│ │ │ │ ├── DummyInterface2.php
│ │ │ │ ├── DummyInterface3.php
│ │ │ │ ├── TaggedClass1.php
│ │ │ │ ├── TaggedClass2.php
│ │ │ │ ├── SubClassOfParentClass1.php
│ │ │ │ └── ClassWithAlias.php
│ │ ├── ObjectManagement
│ │ │ └── Fixture
│ │ │ │ ├── SomeInterface.php
│ │ │ │ ├── ExampleEnum.php
│ │ │ │ ├── SomeImplementation.php
│ │ │ │ ├── FooBarAnnotation.php
│ │ │ │ └── ClassWithUnmatchedRequiredSetterDependency.php
│ │ ├── Security
│ │ │ └── Fixture
│ │ │ │ └── Roles
│ │ │ │ ├── Policy.yaml
│ │ │ │ ├── Foo.Package1
│ │ │ │ └── Policy.yaml
│ │ │ │ └── Package2
│ │ │ │ └── Policy.yaml
│ │ ├── Fixtures
│ │ │ ├── SecondDummyClass.php
│ │ │ ├── RawResponse-2.txt
│ │ │ └── DummyClass.php
│ │ ├── ResourceManagement
│ │ │ └── Fixtures
│ │ │ │ └── TestTemplate.html
│ │ ├── Aop
│ │ │ └── Advice
│ │ │ │ └── Fixtures
│ │ │ │ └── SomeClass.php
│ │ ├── I18n
│ │ │ └── Fixtures
│ │ │ │ └── MockInvalidXliffData.xlf
│ │ └── Property
│ │ │ └── TypeConverter
│ │ │ └── Fixture
│ │ │ └── ExampleIntBackedEnum.php
│ ├── Functional
│ │ ├── Persistence
│ │ │ ├── FixturesPHP8
│ │ │ │ └── ObjectHoldingAnEntity.php
│ │ │ └── Fixtures
│ │ │ │ └── ObjectHoldingAnEntity.php
│ │ ├── ObjectManagement
│ │ │ └── Fixtures
│ │ │ │ ├── SampleMethodAttribute.php
│ │ │ │ ├── InterfaceA.php
│ │ │ │ ├── Flow175
│ │ │ │ └── GreeterInterface.php
│ │ │ │ ├── SampleAttribute.php
│ │ │ │ └── InterfaceWithConstructor.php
│ │ ├── I18n
│ │ │ └── Xliff
│ │ │ │ └── Fixtures
│ │ │ │ ├── en
│ │ │ │ ├── DependentPackage.WithoutBase.xlf
│ │ │ │ ├── BasePackage.GlobalOverride.xlf
│ │ │ │ └── BasePackage.GlobalOverride.Global.xlf
│ │ │ │ └── de
│ │ │ │ ├── BasePackage.Main.xlf
│ │ │ │ ├── BasePackage.Unmerged.xlf
│ │ │ │ ├── DependentPackage.Main.xlf
│ │ │ │ ├── DependentPackage.BaseMain.xlf
│ │ │ │ ├── BasePackage.DependentMain.xlf
│ │ │ │ └── BasePackage.GlobalOverride.xlf
│ │ └── Property
│ │ │ └── Fixtures
│ │ │ └── TestSubclass.php
│ └── Behavior
│ │ └── behat.yml
├── Resources
│ ├── Private
│ │ ├── Templates
│ │ │ └── Tests
│ │ │ │ └── Functional
│ │ │ │ └── Mvc
│ │ │ │ └── Fixtures
│ │ │ │ ├── ViewsConfigurationTest
│ │ │ │ ├── First.html
│ │ │ │ ├── Second.html
│ │ │ │ ├── RenderOther.html
│ │ │ │ ├── Wrong.html
│ │ │ │ ├── ChangedOnPackageLevel.html
│ │ │ │ ├── ChangedOnControllerLevel.html
│ │ │ │ └── Widget.html
│ │ │ │ └── ActionControllerTestA
│ │ │ │ └── Fourth.html
│ │ ├── Schema
│ │ │ ├── Settings
│ │ │ │ ├── Neos.Flow.utility.schema.yaml
│ │ │ │ ├── Neos.Flow.aop.schema.yaml
│ │ │ │ ├── Neos.Flow.reflection.schema.yaml
│ │ │ │ ├── Neos.Flow.package.schema.yaml
│ │ │ │ ├── Neos.Flow.core.schema.yaml
│ │ │ │ └── Neos.Flow.object.schema.yaml
│ │ │ └── Views.schema.yaml
│ │ ├── Translations
│ │ │ ├── uk
│ │ │ │ └── .ValidationErrors.xlf.swp
│ │ │ ├── pt-PT
│ │ │ │ ├── Main.xlf
│ │ │ │ └── ValidationErrors.xlf
│ │ │ └── ta
│ │ │ │ ├── Main.xlf
│ │ │ │ └── ValidationErrors.xlf
│ │ ├── Installer
│ │ │ └── Distribution
│ │ │ │ └── Defaults
│ │ │ │ ├── .gitignore
│ │ │ │ ├── flow.bat
│ │ │ │ ├── Web
│ │ │ │ └── _Resources
│ │ │ │ │ └── .htaccess
│ │ │ │ └── flow
│ │ └── I18n
│ │ │ └── CLDR
│ │ │ ├── README
│ │ │ └── Sources
│ │ │ ├── main
│ │ │ ├── aa_ER.xml
│ │ │ ├── aa_ET.xml
│ │ │ ├── bs_BA.xml
│ │ │ ├── dv_MV.xml
│ │ │ ├── ff_SN.xml
│ │ │ ├── gv_GB.xml
│ │ │ ├── nr_ZA.xml
│ │ │ ├── ny_MW.xml
│ │ │ ├── oc_FR.xml
│ │ │ ├── sa_IN.xml
│ │ │ ├── ss_SZ.xml
│ │ │ ├── ss_ZA.xml
│ │ │ ├── st_ZA.xml
│ │ │ ├── tn_ZA.xml
│ │ │ ├── ts_ZA.xml
│ │ │ ├── ve_ZA.xml
│ │ │ ├── az_Arab.xml
│ │ │ ├── byn_ER.xml
│ │ │ ├── cch_NG.xml
│ │ │ ├── gaa_GH.xml
│ │ │ ├── gez_ER.xml
│ │ │ ├── gez_ET.xml
│ │ │ ├── ha_Latn.xml
│ │ │ ├── kaj_NG.xml
│ │ │ ├── kcg_NG.xml
│ │ │ ├── kfo_CI.xml
│ │ │ ├── kk_Cyrl.xml
│ │ │ ├── kpe_LR.xml
│ │ │ ├── ku_Arab.xml
│ │ │ ├── mn_Cyrl.xml
│ │ │ ├── nso_ZA.xml
│ │ │ ├── sid_ET.xml
│ │ │ ├── ssy_ER.xml
│ │ │ ├── syr_SY.xml
│ │ │ ├── tg_Cyrl.xml
│ │ │ ├── tig_ER.xml
│ │ │ ├── trv_TW.xml
│ │ │ ├── tzm_Latn.xml
│ │ │ ├── ug_Arab.xml
│ │ │ ├── wal_ET.xml
│ │ │ ├── wo_Latn.xml
│ │ │ ├── in.xml
│ │ │ ├── iw.xml
│ │ │ ├── no.xml
│ │ │ ├── tl.xml
│ │ │ ├── mo.xml
│ │ │ ├── sh.xml
│ │ │ ├── az_Arab_IR.xml
│ │ │ ├── en_Dsrt_US.xml
│ │ │ ├── ha_Arab_NG.xml
│ │ │ ├── ha_Arab_SD.xml
│ │ │ ├── ha_Latn_GH.xml
│ │ │ ├── ha_Latn_NE.xml
│ │ │ ├── ha_Latn_NG.xml
│ │ │ ├── kk_Cyrl_KZ.xml
│ │ │ ├── ku_Arab_IQ.xml
│ │ │ ├── ku_Latn_SY.xml
│ │ │ ├── ku_Latn_TR.xml
│ │ │ ├── mn_Cyrl_MN.xml
│ │ │ ├── mn_Mong_CN.xml
│ │ │ ├── tg_Cyrl_TJ.xml
│ │ │ ├── ug_Arab_CN.xml
│ │ │ ├── wo_Latn_SN.xml
│ │ │ ├── tzm_Latn_MA.xml
│ │ │ ├── az_AZ.xml
│ │ │ ├── az_IR.xml
│ │ │ ├── ha_SD.xml
│ │ │ ├── ku_IQ.xml
│ │ │ ├── ku_IR.xml
│ │ │ ├── ku_SY.xml
│ │ │ ├── mn_CN.xml
│ │ │ ├── pa_IN.xml
│ │ │ ├── pa_PK.xml
│ │ │ ├── sh_BA.xml
│ │ │ ├── sh_CS.xml
│ │ │ ├── sh_YU.xml
│ │ │ ├── sr_BA.xml
│ │ │ ├── sr_CS.xml
│ │ │ ├── sr_ME.xml
│ │ │ ├── sr_RS.xml
│ │ │ ├── sr_YU.xml
│ │ │ ├── uz_AF.xml
│ │ │ ├── uz_UZ.xml
│ │ │ ├── zh_CN.xml
│ │ │ ├── zh_HK.xml
│ │ │ ├── zh_MO.xml
│ │ │ ├── zh_SG.xml
│ │ │ ├── zh_TW.xml
│ │ │ ├── shi_MA.xml
│ │ │ ├── sr_Cyrl_CS.xml
│ │ │ ├── sr_Cyrl_YU.xml
│ │ │ ├── sr_Latn_CS.xml
│ │ │ ├── sr_Latn_YU.xml
│ │ │ ├── kpe_GN.xml
│ │ │ ├── st_LS.xml
│ │ │ └── ku_Arab_IR.xml
│ │ │ ├── bcp47
│ │ │ └── variant.xml
│ │ │ ├── collation
│ │ │ ├── be.xml
│ │ │ ├── bg.xml
│ │ │ ├── mk.xml
│ │ │ ├── fa_AF.xml
│ │ │ ├── sr.xml
│ │ │ ├── zh_Hant.xml
│ │ │ ├── el.xml
│ │ │ ├── he.xml
│ │ │ ├── en_BE.xml
│ │ │ ├── sr_Latn.xml
│ │ │ ├── af.xml
│ │ │ ├── ru.xml
│ │ │ └── uk.xml
│ │ │ └── segments
│ │ │ └── el.xml
│ └── Public
│ │ └── Error
│ │ └── Exception.js
├── Configuration
│ ├── Development
│ │ └── Caches.yaml
│ └── Settings.Aop.yaml
└── Classes
│ ├── Cli
│ └── Exception
│ │ ├── StopCommandException.php
│ │ ├── InvalidCommandControllerException.php
│ │ └── InfiniteLoopException.php
│ ├── Mvc
│ ├── Exception.php
│ ├── Exception
│ │ ├── CommandException.php
│ │ ├── InvalidPartException.php
│ │ ├── NoSuchCommandException.php
│ │ ├── InfiniteLoopException.php
│ │ ├── InvalidFormatException.php
│ │ ├── InvalidMarkerException.php
│ │ ├── ViewNotFoundException.php
│ │ ├── InvalidArgumentMixingException.php
│ │ ├── NoSuchArgumentException.php
│ │ ├── InvalidActionNameException.php
│ │ ├── InvalidCommandIdentifierException.php
│ │ ├── InvalidPackageKeyException.php
│ │ ├── InvalidRouteSetupException.php
│ │ ├── InvalidUriPatternException.php
│ │ ├── InvalidArgumentNameException.php
│ │ ├── InvalidArgumentTypeException.php
│ │ └── InvalidRequestTypeException.php
│ └── Routing
│ │ └── Exception
│ │ ├── InvalidControllerException.php
│ │ └── MissingActionNameException.php
│ ├── Session
│ ├── Exception.php
│ ├── Exception
│ │ ├── SessionNotStartedException.php
│ │ ├── OperationNotSupportedException.php
│ │ └── SessionAutostartIsEnabledException.php
│ └── Aspect
│ │ └── LazyLoadingProxyInterface.php
│ ├── Http
│ ├── Exception.php
│ ├── InvalidArgumentException.php
│ └── Client
│ │ ├── CurlEngineException.php
│ │ └── Exception.php
│ ├── I18n
│ ├── Exception.php
│ └── Exception
│ │ └── InvalidXmlFileException.php
│ ├── Aop
│ ├── Exception.php
│ └── Advice
│ │ ├── AfterAdvice.php
│ │ ├── AfterReturningAdvice.php
│ │ ├── BeforeAdvice.php
│ │ └── AfterThrowingAdvice.php
│ ├── Composer
│ └── Exception.php
│ ├── Package
│ ├── Exception.php
│ └── Exception
│ │ ├── CorruptPackageException.php
│ │ └── UnknownPackageException.php
│ ├── Security
│ ├── Exception.php
│ └── Authorization
│ │ └── Privilege
│ │ └── PrivilegeSubjectInterface.php
│ ├── Reflection
│ ├── Exception.php
│ └── Exception
│ │ ├── InvalidClassException.php
│ │ └── UnknownClassException.php
│ ├── Validation
│ ├── Exception.php
│ └── Exception
│ │ └── NoSuchFilterException.php
│ ├── Error
│ └── Exception.php
│ ├── ObjectManagement
│ ├── Proxy
│ │ ├── ProxyInterface.php
│ │ └── Exception.php
│ ├── Exception.php
│ └── Exception
│ │ ├── UnsupportedAttributeException.php
│ │ └── ProxyCompilerException.php
│ ├── Persistence
│ ├── Exception.php
│ ├── Aspect
│ │ └── PersistenceMagicInterface.php
│ └── Exception
│ │ └── KnownObjectException.php
│ ├── Configuration
│ ├── Exception.php
│ └── Exception
│ │ ├── RecursionException.php
│ │ ├── NoSuchFileException.php
│ │ └── ParseErrorException.php
│ ├── Utility
│ └── Exception.php
│ ├── ResourceManagement
│ ├── Exception.php
│ ├── Target
│ │ └── Exception.php
│ ├── Storage
│ │ └── Exception.php
│ └── Filter
│ │ └── FilterInterface.php
│ ├── Core
│ └── Booting
│ │ └── Exception
│ │ └── SubProcessException.php
│ └── Property
│ └── Exception
│ ├── InvalidFormatException.php
│ ├── InvalidSourceException.php
│ ├── InvalidTargetException.php
│ ├── TypeConverterException.php
│ └── DuplicateObjectException.php
├── Neos.Utility.MediaTypes
├── Tests
│ └── Unit
│ │ └── Fixtures
│ │ ├── Text.txt
│ │ └── Neos.png
└── phpunit.xml.dist
├── Neos.FluidAdaptor
├── Tests
│ ├── Functional
│ │ └── View
│ │ │ └── Fixtures
│ │ │ ├── Partials
│ │ │ └── Test.txt
│ │ │ ├── SpecialPartialsDirectory
│ │ │ └── Test.txt
│ │ │ ├── Layouts
│ │ │ └── Foo.txt
│ │ │ ├── NestedRenderingConfiguration
│ │ │ ├── Partials
│ │ │ │ └── Test.html
│ │ │ └── TemplateWithSection.txt
│ │ │ ├── TestTemplate.txt
│ │ │ ├── TestTemplateWithUnknownViewHelper.txt
│ │ │ ├── SpecialLayouts
│ │ │ └── Foo.txt
│ │ │ ├── TestTemplateWithPartial.txt
│ │ │ ├── TestTemplateWithLayout.txt
│ │ │ ├── TestTemplateWithFormField.txt
│ │ │ ├── TestTemplateWithFormUpload.txt
│ │ │ ├── TestTemplateWithPackageKeyViewHelper.txt
│ │ │ └── TestTemplateWithCustomNamespaces.txt
│ └── Unit
│ │ ├── View
│ │ └── Fixtures
│ │ │ ├── UnparsedTemplateFixture.html
│ │ │ ├── LayoutFixture.html
│ │ │ └── TemplateViewSectionFixture.html
│ │ ├── Core
│ │ └── Parser
│ │ │ └── Fixtures
│ │ │ ├── TemplateParserTestFixture01-shorthand.html
│ │ │ ├── TemplateParserTestFixture01-shorthand-split.php
│ │ │ ├── TemplateParserTestFixture14.html
│ │ │ ├── TemplateParserTestFixture06.html
│ │ │ ├── TemplateParserTestFixture14-split.php
│ │ │ └── TemplateParserTestFixture06-split.php
│ │ └── ViewHelpers
│ │ └── Fixtures
│ │ ├── IfFixture.html
│ │ └── IfThenElseFixture.html
├── Resources
│ └── Private
│ │ ├── Templates
│ │ ├── Tests
│ │ │ └── Functional
│ │ │ │ ├── Core
│ │ │ │ └── Fixtures
│ │ │ │ │ ├── ViewHelpers
│ │ │ │ │ ├── Redirect
│ │ │ │ │ │ └── Target.html
│ │ │ │ │ └── SomeAjax
│ │ │ │ │ │ └── Index.html
│ │ │ │ │ ├── RedirectTest
│ │ │ │ │ └── Index.html
│ │ │ │ │ └── AjaxTest
│ │ │ │ │ ├── Index.html
│ │ │ │ │ └── ForIndex.html
│ │ │ │ └── Form
│ │ │ │ └── Fixtures
│ │ │ │ └── Form
│ │ │ │ └── Check.html
│ │ └── ViewHelpers
│ │ │ └── Widget
│ │ │ └── Autocomplete
│ │ │ └── Index.html
│ │ └── Translations
│ │ ├── ta
│ │ └── Main.xlf
│ │ ├── pt-PT
│ │ └── Main.xlf
│ │ └── en
│ │ └── Main.xlf
├── Configuration
│ └── Caches.yaml
└── Classes
│ ├── Exception.php
│ ├── Core
│ ├── Exception.php
│ ├── ViewHelper
│ │ └── Exception.php
│ └── Widget
│ │ └── Exception.php
│ ├── Service
│ └── Exception.php
│ └── View
│ └── Exception.php
├── Neos.Utility.Pdo
├── Configuration
│ └── Objects.yaml
└── composer.json
├── Neos.Eel
├── Configuration
│ └── Caches.yaml
├── Resources
│ └── Private
│ │ └── PHP
│ │ └── php-peg
│ │ └── cli.php
├── Scripts
│ ├── updatePeg.sh
│ ├── generateEelParser.bat
│ └── generateEelParser.sh
└── Classes
│ ├── Exception.php
│ ├── FlowQuery
│ ├── FizzleException.php
│ └── FlowQueryException.php
│ ├── EvaluationException.php
│ ├── ParserException.php
│ └── NotAllowedException.php
├── Neos.Cache
├── phpunit.xml.dist
├── Tests
│ └── PhpUnitBootstrap.php
└── Classes
│ └── Exception
│ ├── InvalidCacheException.php
│ ├── InvalidDataException.php
│ ├── NoSuchCacheException.php
│ ├── InvalidBackendException.php
│ ├── ClassAlreadyLoadedException.php
│ ├── DuplicateIdentifierException.php
│ └── NotSupportedByBackendException.php
├── Neos.Error.Messages
└── phpunit.xml.dist
├── Neos.Utility.Arrays
└── phpunit.xml.dist
├── Neos.Utility.Files
├── phpunit.xml.dist
└── Classes
│ └── Exception
│ └── FilesException.php
├── Neos.Utility.Schema
└── phpunit.xml.dist
├── Neos.Utility.Unicode
├── phpunit.xml.dist
└── Classes
│ ├── Exception.php
│ └── UnsupportedFeatureException.php
├── Neos.Utility.ObjectHandling
├── phpunit.xml.dist
└── Classes
│ └── Exception
│ └── InvalidTypeException.php
├── .codeclimate.yml
├── Neos.Http.Factories
└── Classes
│ ├── UriFactory.php
│ ├── StreamFactory.php
│ ├── RequestFactory.php
│ ├── ResponseFactory.php
│ ├── UploadedFileFactory.php
│ ├── ServerRequestFactory.php
│ ├── UriFactoryTrait.php
│ ├── RequestFactoryTrait.php
│ └── ResponseFactoryTrait.php
├── .github
├── ISSUE_TEMPLATE
│ └── config.yml
├── dependabot.yml
└── stale.yml
├── Neos.Kickstarter
└── Resources
│ └── Private
│ └── Generator
│ ├── Translations
│ └── SourceLanguageTemplate.xlf.tmpl
│ ├── Repository
│ └── RepositoryTemplate.php.tmpl
│ └── View
│ ├── DefaultLayout.html
│ └── SampleIndexTemplate.html
├── Neos.Utility.OpcodeCache
└── composer.json
├── Neos.Flow.Log
└── Classes
│ ├── Exception.php
│ └── Exception
│ └── NoSuchBackendException.php
└── .editorconfig
/.gitattributes:
--------------------------------------------------------------------------------
1 | Neos.Flow/Documentation/conf.py merge=ours
2 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/_build/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/_static/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/_templates/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Neos.Utility.MediaTypes/Tests/Unit/Fixtures/Text.txt:
--------------------------------------------------------------------------------
1 | Neos is great!
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/Partials/Test.txt:
--------------------------------------------------------------------------------
1 | Robert
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/requirements.in:
--------------------------------------------------------------------------------
1 | sphinx==7.2.6
2 | sphinx_rtd_theme==1.3.0
3 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/View/Fixtures/UnparsedTemplateFixture.html:
--------------------------------------------------------------------------------
1 | Unparsed Template
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/SpecialPartialsDirectory/Test.txt:
--------------------------------------------------------------------------------
1 | Karsten
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/Layouts/Foo.txt:
--------------------------------------------------------------------------------
1 | Hey
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/NestedRenderingConfiguration/Partials/Test.html:
--------------------------------------------------------------------------------
1 | {hack}
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplate.txt:
--------------------------------------------------------------------------------
1 | This is a test template. Hello {name}.
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Configuration/Fixture/YmlThrowsException.yaml:
--------------------------------------------------------------------------------
1 | Neos:
2 | Flow:
3 | yaml: true
4 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Configuration/Fixture/YmlThrowsException.yml:
--------------------------------------------------------------------------------
1 | Neos:
2 | Flow:
3 | yml: true
4 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/First.html:
--------------------------------------------------------------------------------
1 | First action
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture01-shorthand.html:
--------------------------------------------------------------------------------
1 |
2 | a{f:base()}b
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Second.html:
--------------------------------------------------------------------------------
1 | Second action
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithUnknownViewHelper.txt:
--------------------------------------------------------------------------------
1 | {namespace fo}
2 |
--------------------------------------------------------------------------------
/Neos.Utility.Pdo/Configuration/Objects.yaml:
--------------------------------------------------------------------------------
1 | Neos\Utility\PdoHelper:
2 | autowiring: off
3 | scope: prototype
4 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/SpecialLayouts/Foo.txt:
--------------------------------------------------------------------------------
1 | Hey -- overridden --
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/RenderOther.html:
--------------------------------------------------------------------------------
1 | Render Other Action
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Wrong.html:
--------------------------------------------------------------------------------
1 | Oops, that's not right!
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ActionControllerTestA/Fourth.html:
--------------------------------------------------------------------------------
1 | Fourth action {emailAddress}
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithPartial.txt:
--------------------------------------------------------------------------------
1 | This is a test template. Hello .
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/ChangedOnPackageLevel.html:
--------------------------------------------------------------------------------
1 | Changed on Package Level
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Schema/Settings/Neos.Flow.utility.schema.yaml:
--------------------------------------------------------------------------------
1 | type: dictionary
2 | additionalProperties: false
3 | properties: []
4 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/ChangedOnControllerLevel.html:
--------------------------------------------------------------------------------
1 | Changed on Controller Level
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/ViewHelpers/Redirect/Target.html:
--------------------------------------------------------------------------------
1 |
{parameter}
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture01-shorthand-split.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | HEY HO
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/View/Fixtures/LayoutFixture.html:
--------------------------------------------------------------------------------
1 | {namespace f=Neos\FluidAdaptor\ViewHelpers}
2 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithFormField.txt:
--------------------------------------------------------------------------------
1 | This is a test template.
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture14.html:
--------------------------------------------------------------------------------
1 | %.3e
--------------------------------------------------------------------------------
/Neos.Eel/Configuration/Caches.yaml:
--------------------------------------------------------------------------------
1 | Eel_Expression_Code:
2 | frontend: Neos\Cache\Frontend\StringFrontend
3 | backend: Neos\Cache\Backend\SimpleFileBackend
4 |
--------------------------------------------------------------------------------
/Neos.Eel/Resources/Private/PHP/php-peg/cli.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Functional/View/Fixtures/TestTemplateWithPackageKeyViewHelper.txt:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/ViewHelpers/Fixtures/IfFixture.html:
--------------------------------------------------------------------------------
1 | {namespace f=Neos\FluidAdaptor\ViewHelpers}RenderSomething
2 |
--------------------------------------------------------------------------------
/Neos.Flow/Configuration/Development/Caches.yaml:
--------------------------------------------------------------------------------
1 | Flow_PropertyMapper:
2 | frontend: Neos\Cache\Frontend\VariableFrontend
3 | backend: Neos\Cache\Backend\NullBackend
4 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/ReleaseNotes/index.rst:
--------------------------------------------------------------------------------
1 | Release Notes
2 | =============
3 |
4 | .. toctree::
5 | :reversed:
6 | :glob:
7 |
8 | *
9 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Reflection/Fixture/FileWithNoClass.php:
--------------------------------------------------------------------------------
1 | foobar
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/Quickstart/Images/CoffeeBeanController.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/Quickstart/Images/CoffeeBeanController.png
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Templates/Tests/Functional/Mvc/Fixtures/ViewsConfigurationTest/Widget.html:
--------------------------------------------------------------------------------
1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers}
2 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/RedirectTest/Index.html:
--------------------------------------------------------------------------------
1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers}
2 |
--------------------------------------------------------------------------------
/Neos.Eel/Scripts/updatePeg.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | cd ../Resources/Private
4 | git clone git://github.com/skurfuerst/php-peg.git
5 | rm -Rf php-peg/.git
6 | rm -Rf PHP/php-peg
7 | mv php-peg PHP/
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Classes/Cli/Exception/StopCommandException.php:
--------------------------------------------------------------------------------
1 |
2 | Christian uses
3 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/MyFirstBlog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/MyFirstBlog.png
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/UpdatedPost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartII/Images/UpdatedPost.png
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Installer/Distribution/Defaults/.gitignore:
--------------------------------------------------------------------------------
1 | /Build/
2 | /Configuration/
3 | /Data/
4 | /Packages/
5 | /Web/
6 | /bin/
7 | /Readme.rst
8 | /Upgrading.rst
9 | /flow
10 | /flow.bat
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/ObjectManagement/Fixture/SomeImplementation.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture06.html:
--------------------------------------------------------------------------------
1 | {namespace foo=Neos\FluidAdaptor\ViewHelpers}{number}
2 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/Core/Parser/Fixtures/TemplateParserTestFixture14-split.php:
--------------------------------------------------------------------------------
1 | ',
5 | '%.3e',
6 | ''
7 | ];
8 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Tests/Unit/ViewHelpers/Fixtures/IfThenElseFixture.html:
--------------------------------------------------------------------------------
1 | {namespace f=Neos\FluidAdaptor\ViewHelpers}
2 | Do not display
3 | YEP
4 | NOPE
5 |
6 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/StyleGuide/index.rst:
--------------------------------------------------------------------------------
1 | ========================
2 | Publications Style Guide
3 | ========================
4 |
5 | .. toctree::
6 | :titlesonly:
7 |
8 | About
9 | StyleAndUsage
10 | FontConventions
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Http_MiddlewaresChain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Http_MiddlewaresChain.png
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Security_FilterFirewall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Security_FilterFirewall.png
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Configuration/Fixture/YAMLConfigurationFile.yaml:
--------------------------------------------------------------------------------
1 | configurationFileHasBeenLoaded: true
2 | Neos:
3 | Flow:
4 | something: 'foo'
5 | '@bar': 1
6 | aboolean: true
7 | 'Foo.Bar:Baz': 'a quoted key'
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/AOPFramework_AdviceChain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/AOPFramework_AdviceChain.png
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Persistence_QueryProcess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Images/Persistence_QueryProcess.png
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/Persistence/FixturesPHP8/ObjectHoldingAnEntity.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Error.Messages/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Utility.Arrays/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Utility.Files/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Utility.Schema/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Utility.Unicode/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/README:
--------------------------------------------------------------------------------
1 |
2 | This directory contains the Unicode Common Data Locale Repository (CLDR)
3 | available at http://www.unicode.org/cldr/.
4 |
5 | Latest update:
6 | main: Version 38 as of 2020-06-04
7 | other: Version 1.8.1 as of 2010-04-29
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Schema/Settings/Neos.Flow.aop.schema.yaml:
--------------------------------------------------------------------------------
1 | type: dictionary
2 | additionalProperties: false
3 | properties:
4 | 'globalObjects':
5 | required: true
6 | type: dictionary
7 | additionalProperties: { type: string, format: class-name }
8 |
--------------------------------------------------------------------------------
/Neos.Utility.MediaTypes/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Form/Fixtures/Form/Check.html:
--------------------------------------------------------------------------------
1 | My Form
2 |
3 |
4 |
5 | Abschicken
6 |
--------------------------------------------------------------------------------
/Neos.Utility.ObjectHandling/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tests
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Pdf/Flow_Coding_Guidelines_on_one_page.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Pdf/Flow_Coding_Guidelines_on_one_page.pdf
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Images/Flow_Coding_Guidelines_on_one_page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/flow-development-collection/HEAD/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/CodingGuideLines/Images/Flow_Coding_Guidelines_on_one_page.png
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Translations/pt-PT/Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Translations/ta/Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.codeclimate.yml:
--------------------------------------------------------------------------------
1 | exclude_paths:
2 | # Auto-generated classes from the PEG parser generator
3 | - Neos.Eel/Classes/FlowQuery/FizzleParser.php
4 | - Neos.Eel/Classes/EelParser.php
5 | - Neos.Eel/Classes/AbstractParser.php
6 | # 3rd party code
7 | - Neos.Eel/Resources/Private/PHP/php-peg/**
8 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Templates/Tests/Functional/Core/Fixtures/AjaxTest/ForIndex.html:
--------------------------------------------------------------------------------
1 | {namespace test=Neos\FluidAdaptor\Tests\Functional\Core\Fixtures\ViewHelpers}
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Translations/ta/Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Neos.Http.Factories/Classes/UriFactory.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Resources/Private/Translations/pt-PT/Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Configuration/Settings.Aop.yaml:
--------------------------------------------------------------------------------
1 | #
2 | # AOP configuration for the Flow Framework
3 | #
4 |
5 | Neos:
6 | Flow:
7 | aop:
8 | # Registers global objects to be evaluated for dynamic pointcut expressions
9 | globalObjects:
10 | securityContext: Neos\Flow\Security\Context
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Translations/pt-PT/ValidationErrors.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/Persistence/Fixtures/ObjectHoldingAnEntity.php:
--------------------------------------------------------------------------------
1 | ',
6 | '',
7 | '{number}',
8 | '',
9 | ''
10 | ];
11 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: true
2 | contact_links:
3 | - name: Neos Forum
4 | url: https://discuss.neos.io/
5 | about: The official online forum for questions and discussions around Neos.
6 | - name: Neos Slack
7 | url: https://slack.neos.io/
8 | about: Direct chat of the Neos creators and users.
9 |
--------------------------------------------------------------------------------
/Neos.Http.Factories/Classes/UploadedFileFactory.php:
--------------------------------------------------------------------------------
1 | f:format.raw()}
3 | {f:widget.uri(action: 'ajaxWithCustomView', ajax: true, arguments: {option1: 'xyz'}) -> f:format.raw()}
4 |
--------------------------------------------------------------------------------
/Neos.Cache/Tests/PhpUnitBootstrap.php:
--------------------------------------------------------------------------------
1 | value = $value;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/aa_ER.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/aa_ET.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/bs_BA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/dv_MV.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ff_SN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/gv_GB.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/nr_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ny_MW.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/oc_FR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sa_IN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ss_SZ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ss_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/st_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tn_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ts_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ve_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Security/Fixture/Roles/Foo.Package1/Policy.yaml:
--------------------------------------------------------------------------------
1 | roles:
2 | Administrator: ['Package2:PowerUser']
3 |
4 | acls:
5 | Administrator:
6 | methods:
7 | method1: 'Some policy from Foo.Package1 for Foo.Package1:Administrator'
8 | 'Package2:User':
9 | methods:
10 | method1: 'Some policy from Foo.Package1 for Package2:User with packageKey definition'
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/az_Arab.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/byn_ER.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/cch_NG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/gaa_GH.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/gez_ER.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/gez_ET.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Latn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kaj_NG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kcg_NG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kfo_CI.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kk_Cyrl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kpe_LR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_Arab.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/mn_Cyrl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/nso_ZA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sid_ET.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ssy_ER.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/syr_SY.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tg_Cyrl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tig_ER.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/trv_TW.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tzm_Latn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ug_Arab.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/wal_ET.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/wo_Latn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/in.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/iw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/no.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/mo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sh.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/az_Arab_IR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/en_Dsrt_US.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Arab_NG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Arab_SD.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Latn_GH.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Latn_NE.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_Latn_NG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kk_Cyrl_KZ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_Arab_IQ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_Latn_SY.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_Latn_TR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/mn_Cyrl_MN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/mn_Mong_CN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tg_Cyrl_TJ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ug_Arab_CN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/wo_Latn_SN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/tzm_Latn_MA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/ObjectManagement/Fixture/ClassWithUnmatchedRequiredSetterDependency.php:
--------------------------------------------------------------------------------
1 | requiredSetterArgument = $setterArgument;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Documentation/TheDefinitiveGuide/PartV/index.rst:
--------------------------------------------------------------------------------
1 | Part V: Appendixes
2 | ==================
3 |
4 | .. only:: html
5 |
6 | .. toctree::
7 | :maxdepth: 1
8 | :glob:
9 |
10 | *
11 |
12 | CodingGuideLines/index
13 | ReleaseNotes/index
14 | ChangeLogs/index
15 |
16 | .. only:: latex
17 |
18 | .. toctree::
19 | :maxdepth: 1
20 | :glob:
21 |
22 | *
23 |
24 | CodingGuideLines/index
25 | ReleaseNotes/index
26 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/az_AZ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/az_IR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ha_SD.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_IQ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_IR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_SY.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/mn_CN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/pa_IN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/pa_PK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sh_BA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sh_CS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sh_YU.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_BA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_CS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_ME.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_RS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_YU.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/uz_AF.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/uz_UZ.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/zh_CN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/zh_HK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/zh_MO.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/zh_SG.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/zh_TW.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Schema/Views.schema.yaml:
--------------------------------------------------------------------------------
1 | type: array
2 | items:
3 | type: dictionary
4 | additionalProperties: false
5 | properties:
6 | 'requestFilter': {type: string, required: true}
7 | 'viewObjectName': {type: string, format: class-name}
8 | 'options':
9 | # might be any option defined in the supportedOptions array of the viewObject
10 | type: dictionary
11 | additionalProperties: true
12 |
--------------------------------------------------------------------------------
/Neos.Http.Factories/Classes/UriFactoryTrait.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/Schema/Settings/Neos.Flow.package.schema.yaml:
--------------------------------------------------------------------------------
1 | type: dictionary
2 | additionalProperties: false
3 | properties:
4 | 'git':
5 | type: dictionary
6 | additionalProperties: false
7 | properties:
8 | 'gitBinary': { type: string }
9 | 'inactiveByDefault':
10 | type: array
11 | items: { type: string }
12 | 'packagesPathByType':
13 | type: dictionary
14 | additionalProperties: { type: string }
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/bcp47/variant.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Fixtures/SecondDummyClass.php:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 | Insert title here
7 |
8 |
9 | Output
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Fixtures/RawResponse-2.txt:
--------------------------------------------------------------------------------
1 | HTTP/1.1 301 Moved Permanently
2 | Server: Apache/2.2.17 (Ubuntu)
3 | Location: http://flow.neos.io/
4 | Vary: Accept-Encoding
5 | Content-Encoding: gzip
6 | Content-Type: text/html; charset=iso-8859-1
7 | Content-Length: 243
8 | Date: Wed, 29 Aug 2012 09:03:46 GMT
9 | X-Varnish: 1792566338
10 | Age: 0
11 | Via: 1.1 varnish
12 | Connection: keep-alive
13 |
14 |
15 |
16 | the body
17 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/ResourceManagement/Fixtures/TestTemplate.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Hello World!
7 |
8 |
9 | Hello World!
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Utility.Pdo/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "neos/utility-pdo",
3 | "description": "Flow PDO Utilities",
4 | "type": "library",
5 | "homepage": "http://flow.neos.io",
6 | "license": "MIT",
7 | "require": {
8 | "php": "^8.0"
9 | },
10 | "autoload": {
11 | "psr-4": {
12 | "Neos\\Utility\\": "Classes"
13 | }
14 | },
15 | "extra": {
16 | "neos": {
17 | "package-key": "Neos.Utility.Pdo"
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_Cyrl_CS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_Cyrl_YU.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_Latn_CS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/sr_Latn_YU.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Kickstarter/Resources/Private/Generator/Translations/SourceLanguageTemplate.xlf.tmpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Some label
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | updates:
3 | - package-ecosystem: composer
4 | directory: "/"
5 | schedule:
6 | interval: weekly
7 | time: "09:00"
8 | open-pull-requests-limit: 10
9 | ignore:
10 | - dependency-name: doctrine/migrations
11 | versions:
12 | - ">= 2.1.a, < 2.2"
13 | - dependency-name: doctrine/migrations
14 | versions:
15 | - ">= 2.a, < 3"
16 | - dependency-name: egulias/email-validator
17 | versions:
18 | - 3.0.0
19 |
--------------------------------------------------------------------------------
/Neos.Kickstarter/Resources/Private/Generator/Repository/RepositoryTemplate.php.tmpl:
--------------------------------------------------------------------------------
1 | {namespace k=Neos\Kickstarter\ViewHelpers}
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/mk.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/ObjectManagement/Fixtures/SampleMethodAttribute.php:
--------------------------------------------------------------------------------
1 | NOTE: This widget is just a simplified example. You should try to avoid inline scripts and use unobstrusive approach instead!
2 |
10 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/fa_AF.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Neos.Eel/Classes/Exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ]]>
6 |
7 |
8 | ]]>
9 |
10 | ]]>
11 | ]]>
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Neos.Eel/Classes/FlowQuery/FizzleException.php:
--------------------------------------------------------------------------------
1 |
7 | # Override again if executed later in the evaluation list
8 | SetHandler default-handler
9 |
10 |
11 |
12 | php_flag engine off
13 |
14 |
15 | php_flag engine off
16 |
17 |
--------------------------------------------------------------------------------
/Neos.Eel/Classes/FlowQuery/FlowQueryException.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Neos.Flow.Log/Classes/Exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Neos.Http.Factories/Classes/RequestFactoryTrait.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/he.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Neos.Flow/Classes/Http/Exception.php:
--------------------------------------------------------------------------------
1 | `_
2 | ==============================================================================================
3 |
4 | Overview of merged pull requests
5 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 |
7 |
8 | `Detailed log `_
9 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/en_BE.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Aop/Advice/Fixtures/SomeClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/kpe_GN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | L$
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/st_LS.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | M
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/en/DependentPackage.WithoutBase.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Additional source string
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Utility.Unicode/Classes/Exception.php:
--------------------------------------------------------------------------------
1 | `_
2 | ================================================================================================
3 |
4 | Overview of merged pull requests
5 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 |
7 |
8 | `Detailed log `_
9 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/ObjectManagement/Fixtures/InterfaceA.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Source string
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Reflection/Fixture/DummyClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Classes/Error/Exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/de/DependentPackage.Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Classes/Configuration/Exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | N
13 | ʼn
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/collation/ru.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | [Ѐ-ЗК-зк-џ]
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Reflection/Fixture/DummyFinalClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | previous
7 |
8 |
9 | next
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Neos.Eel/Classes/NotAllowedException.php:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Reflection/Fixture/AliasedClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Г
13 | ґ
14 | Ґ
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Neos.Flow/Resources/Private/I18n/CLDR/Sources/main/ku_Arab_IR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | چینی
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Neos.Kickstarter/Resources/Private/Generator/View/SampleIndexTemplate.html:
--------------------------------------------------------------------------------
1 | {namespace k=Neos\Kickstarter\ViewHelpers}
2 |
3 | ]]>{viewName} view of {controllerName} controller
4 |
5 | ]]>
6 | A freshly created Fluid template!
7 | Some data set by the controller:
8 |
9 |
11 | - {foo}
12 |
13 | ]]>
14 |
15 | ]]>
16 |
--------------------------------------------------------------------------------
/Neos.Utility.ObjectHandling/Classes/Exception/InvalidTypeException.php:
--------------------------------------------------------------------------------
1 |
7 | This issue has been automatically marked as stale because it has not had
8 | recent activity. It will be closed if no further activity occurs.
9 | Thank you for your contributions!
10 | closeComment: >
11 | This issue has been automatically closed because it has not had activity for some time.
12 | But that does not need to be final. If you find the time to work on it, feel free to open it again.
13 | Thanks again for your contributions!
14 |
--------------------------------------------------------------------------------
/Neos.Flow/Classes/Core/Booting/Exception/SubProcessException.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | [[$STerm] [\u003B \u037E]]
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/de/DependentPackage.BaseMain.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Anders übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/en/BasePackage.GlobalOverride.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Translated string
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Reflection/Fixture/SubClassOfParentClass1.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Anders übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/de/BasePackage.GlobalOverride.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Übersetzte Zeichenkette
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/I18n/Xliff/Fixtures/en/BasePackage.GlobalOverride.Global.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Source string
7 | Global differently translated string
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Functional/ObjectManagement/Fixtures/SampleAttribute.php:
--------------------------------------------------------------------------------
1 | class = $class;
13 | $this->options = $options;
14 | $this->argWithDefault = $argWithDefault;
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/Neos.Flow/Tests/Unit/Property/TypeConverter/Fixture/ExampleIntBackedEnum.php:
--------------------------------------------------------------------------------
1 | {
9 | if (backtrace.open === true) {
10 | window.localStorage.removeItem(localStorageItemIdentifier);
11 | } else {
12 | window.localStorage.setItem(localStorageItemIdentifier, true);
13 | }
14 | });
15 |
--------------------------------------------------------------------------------
/Neos.FluidAdaptor/Classes/Core/Widget/Exception.php:
--------------------------------------------------------------------------------
1 |