https://github.com/jkbennemann/webauthn-php
This is a simple implementation of the Webauthn API to allow servers to register and authenticate users using public key cryptography instead of a password.
https://github.com/jkbennemann/webauthn-php
library php webauthn webauthn-library
Last synced: 4 months ago
JSON representation
This is a simple implementation of the Webauthn API to allow servers to register and authenticate users using public key cryptography instead of a password.
- Host: GitHub
- URL: https://github.com/jkbennemann/webauthn-php
- Owner: jkbennemann
- License: mit
- Created: 2022-10-08T08:31:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T14:29:16.000Z (over 2 years ago)
- Last Synced: 2025-06-12T22:08:19.249Z (about 1 year ago)
- Topics: library, php, webauthn, webauthn-library
- Language: PHP
- Homepage:
- Size: 61.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Simple package to implement the Webauthn API standard inside your PHP projects
[](https://packagist.org/packages/jkbennemann/webauthn-php)
[](https://github.com/jkbennemann/webauthn-php/actions/workflows/run-tests.yml)
[](https://packagist.org/packages/jkbennemann/webauthn-php)
## Installation
You can install the package via composer:
```bash
composer require jkbennemann/webauthn-php
```
## Usage
```php
$skeleton = new Jkbennemann\Webauthn();
echo $skeleton->echoPhrase('Hello, Jkbennemann!');
```
## Testing
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Jakob Bennemann](https://github.com/jkbennemann)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.