├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .php-cs-fixer.php ├── Annotations ├── AnnotationResolver.php ├── ParamDecryptor.php └── ParamEncryptor.php ├── DependencyInjection ├── Compiler │ └── LoadAnnotationService.php ├── Configuration.php └── NzoEncryptorExtension.php ├── Encryptor └── Encryptor.php ├── LICENSE ├── NzoUrlEncryptorBundle.php ├── README.md ├── Resources └── config │ └── services.yaml ├── Tests ├── Annotation │ ├── AnnotationResolverTest.php │ └── Fixtures │ │ └── DummyController.php └── Encryptor │ └── NzoEncryptorExtensionTest.php ├── Twig └── EncryptorExtension.php ├── composer.json ├── phpstan.neon ├── phpunit.xml.dist └── rector.php /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /Annotations/AnnotationResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Annotations/AnnotationResolver.php -------------------------------------------------------------------------------- /Annotations/ParamDecryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Annotations/ParamDecryptor.php -------------------------------------------------------------------------------- /Annotations/ParamEncryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Annotations/ParamEncryptor.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/LoadAnnotationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/DependencyInjection/Compiler/LoadAnnotationService.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/NzoEncryptorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/DependencyInjection/NzoEncryptorExtension.php -------------------------------------------------------------------------------- /Encryptor/Encryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Encryptor/Encryptor.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /NzoUrlEncryptorBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/NzoUrlEncryptorBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Resources/config/services.yaml -------------------------------------------------------------------------------- /Tests/Annotation/AnnotationResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Tests/Annotation/AnnotationResolverTest.php -------------------------------------------------------------------------------- /Tests/Annotation/Fixtures/DummyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Tests/Annotation/Fixtures/DummyController.php -------------------------------------------------------------------------------- /Tests/Encryptor/NzoEncryptorExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Tests/Encryptor/NzoEncryptorExtensionTest.php -------------------------------------------------------------------------------- /Twig/EncryptorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/Twig/EncryptorExtension.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayzo/NzoUrlEncryptorBundle/HEAD/rector.php --------------------------------------------------------------------------------