agentsib / crypto-bundle
Symfony 6/7 bundle for encrypt data with openssl library
v4.0.0
2026-09-03 14:47 UTC
Requires
- php: >=8.1
- ext-dom: *
- ext-openssl: *
- doctrine/doctrine-bundle: ^2.13 || ^3.0
- doctrine/orm: ^2.17 || ^3.0
- doctrine/persistence: ^3.0 || ^4
- symfony/dependency-injection: ^6.4 || ^7.0
- symfony/framework-bundle: ^6.4 || ^7.0
- symfony/yaml: ^6.4 || ^7.0
Requires (Dev)
- phpunit/phpunit: ^10.5 || ^11.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-04 08:50:31 UTC
README
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require agentsib/crypto-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle (Symfony 6/7)
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php file of your project:
<?php // config/bundles.php return [ // ... AgentSIB\CryptoBundle\AgentSIBCryptoBundle::class => ['all' => true], // ... ];