Getting Started
Installing & Setting up
Installing via Composer
If you don’t have Composer installed in your computer, start by installing Composer globally. Then, execute the following commands to install the required dependencies:
composer require darkwebdesign/public-key-cryptography-bundle
composer install
Enabling the bundle in Symfony
// config/bundles.php
return [
// ...
DarkWebDesign\PublicKeyCryptographyBundle\PublicKeyCryptographyBundle::class => ['all' => true],
];