avkluchko / x509-bundle
Bundle for work with x509 certificate
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- ext-openssl: *
- avkluchko/government-bundle: ^1.1.3
- symfony/config: ^4.0 || ^5.1.5
- symfony/dependency-injection: ^4.1.12 || ^5.1.5
- symfony/http-kernel: ^4.0 || ^5.1.5
Requires (Dev)
- phpstan/phpstan: ^1.4
- phpstan/phpstan-symfony: ^1.1
- phpunit/phpunit: ^8.5
- squizlabs/php_codesniffer: ^3.6
- symfony/phpunit-bridge: ^4.1.12 || ^5.1.5
This package is auto-updated.
Last update: 2024-11-13 22:13:20 UTC
README
Services for work with x509 certificate.
Requirements
The minumum requirement by X509 Bundle is that your web-server supports PHP 8.0 or above.
Warning! Need installed openssl php extension.
Installation
Install the package with:
composer require avkluchko/x509-bundle
If you're not using Symfony Flex, you'll also
need to enable the AVKluchko\X509Bundle\X509Bundle
in your AppKernel.php
file.
Usage
// src/Controller/SomeController.php use AVKluchko\X509Bundle\Service\Parser; // ... class SomeController { public function index(Parser $parser) { $data = $parser->parse('some_certificate_file'); // ... } }