├── LICENSE ├── README.md ├── composer.json └── src └── Knp └── DictionaryBundle ├── DataCollector └── DictionaryDataCollector.php ├── DependencyInjection ├── Compiler │ ├── DictionaryBuildingPass.php │ ├── DictionaryFactoryBuildingPass.php │ ├── DictionaryRegistrationPass.php │ └── DictionaryTracePass.php ├── Configuration.php └── KnpDictionaryExtension.php ├── Dictionary.php ├── Dictionary ├── Collection.php ├── Combined.php ├── Factory.php ├── Factory │ ├── Aggregate.php │ ├── Combined.php │ ├── Extended.php │ ├── Invokable.php │ ├── Iterator.php │ ├── KeyValue.php │ ├── Value.php │ └── ValueAsKey.php ├── Invokable.php ├── Iterator.php ├── Simple.php ├── Traceable.php └── Wrapper.php ├── Exception └── DictionaryNotFoundException.php ├── Faker └── Provider │ └── Dictionary.php ├── Form └── Type │ └── DictionaryType.php ├── KnpDictionaryBundle.php ├── Resources ├── config │ ├── services.yaml │ └── services │ │ ├── debug.yaml │ │ ├── factories.yaml │ │ ├── faker.yaml │ │ ├── forms.yaml │ │ ├── templating.yaml │ │ ├── transformers.yaml │ │ └── validation.yaml └── views │ └── layout.html.twig ├── Templating └── Extension │ └── Dictionary.php ├── Validator └── Constraints │ ├── Dictionary.php │ └── DictionaryValidator.php ├── ValueTransformer.php └── ValueTransformer ├── Aggregate.php └── Constant.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DataCollector/DictionaryDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DataCollector/DictionaryDataCollector.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryBuildingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryBuildingPass.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryFactoryBuildingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryFactoryBuildingPass.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryRegistrationPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryRegistrationPass.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryTracePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/Compiler/DictionaryTracePass.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/DependencyInjection/KnpDictionaryExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/DependencyInjection/KnpDictionaryExtension.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Collection.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Combined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Combined.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Aggregate.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Combined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Combined.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Extended.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Invokable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Invokable.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Iterator.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/KeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/KeyValue.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/Value.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Factory/ValueAsKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Factory/ValueAsKey.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Invokable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Invokable.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Iterator.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Simple.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Traceable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Traceable.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Dictionary/Wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Dictionary/Wrapper.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Exception/DictionaryNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Exception/DictionaryNotFoundException.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Faker/Provider/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Faker/Provider/Dictionary.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Form/Type/DictionaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Form/Type/DictionaryType.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/KnpDictionaryBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/KnpDictionaryBundle.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/debug.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/factories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/factories.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/faker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/faker.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/forms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/forms.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/templating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/templating.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/transformers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/transformers.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/config/services/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/config/services/validation.yaml -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Templating/Extension/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Templating/Extension/Dictionary.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Validator/Constraints/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Validator/Constraints/Dictionary.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/Validator/Constraints/DictionaryValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/Validator/Constraints/DictionaryValidator.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/ValueTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/ValueTransformer.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/ValueTransformer/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/ValueTransformer/Aggregate.php -------------------------------------------------------------------------------- /src/Knp/DictionaryBundle/ValueTransformer/Constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/DictionaryBundle/HEAD/src/Knp/DictionaryBundle/ValueTransformer/Constant.php --------------------------------------------------------------------------------