Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexeevdv/sumsub-client-bundle
Symfony bundle for alexeevdv/sumsub-client
https://github.com/alexeevdv/sumsub-client-bundle
Last synced: about 2 months ago
JSON representation
Symfony bundle for alexeevdv/sumsub-client
- Host: GitHub
- URL: https://github.com/alexeevdv/sumsub-client-bundle
- Owner: alexeevdv
- License: mit
- Created: 2020-09-04T14:34:01.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2022-07-01T15:30:00.000Z (over 2 years ago)
- Last Synced: 2024-10-23T12:24:22.045Z (3 months ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sumsub-client-bundle
Symfony bundle for [alexeevdv/sumsub-client](https://github.com/alexeevdv/sumsub-client)
## Installation
```shell script
composer require alexeevdv/sumsub-client-bundle
```## Configuration
```php
// config/bundles.phpreturn [
// ...
alexeevdv\Symfony\SumSub\SumSubClientBundle::class => ['all' => true],
// ...
];
``````yaml
# config/packages/sumsub_client.yamlsumsub_client:
base_uri: '%env(SUMSUB_BASE_URI)%'
app_token: '%env(SUMSUB_APP_TOKEN)%'
secret_key: '%env(SUMSUB_SECRET_KEY)%'
```