Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/passageidentity/passage-php
Passkey Complete for PHP - Integrate into your PHP API or service to enable a completely passwordless standalone auth solution with Passage by 1Password
https://github.com/passageidentity/passage-php
1password authentication biometrics ciam identity magic-links oauth2 oidc otp passage passage-sdk passkey-complete passkeys passwordless php webauthn
Last synced: about 1 month ago
JSON representation
Passkey Complete for PHP - Integrate into your PHP API or service to enable a completely passwordless standalone auth solution with Passage by 1Password
- Host: GitHub
- URL: https://github.com/passageidentity/passage-php
- Owner: passageidentity
- License: mit
- Created: 2023-09-12T14:26:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T16:44:02.000Z (2 months ago)
- Last Synced: 2024-10-23T23:28:12.297Z (about 2 months ago)
- Topics: 1password, authentication, biometrics, ciam, identity, magic-links, oauth2, oidc, otp, passage, passage-sdk, passkey-complete, passkeys, passwordless, php, webauthn
- Language: PHP
- Homepage: http://docs.passage.id/complete
- Size: 260 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![passage-php](https://storage.googleapis.com/passage-docs/github-md-assets/passage-php.png)
![GitHub License](https://img.shields.io/github/license/passageidentity/passage-node)
![Static Badge](https://img.shields.io/badge/Built_by_1Password-grey?logo=1password)## About
[Passage by 1Password](https://1password.com/product/passage) unlocks the passwordless future with a simpler, more secure passkey authentication experience. Passage handles the complexities of the [WebAuthn API](https://blog.1password.com/what-is-webauthn/), and allows you to implement passkeys with ease.
Use [Passkey Flex](https://docs.passage.id/flex) to add passkeys to an existing authentication experience.
Use [Passkey Complete](https://docs.passage.id/complete) as a standalone passwordless auth solution.
Use [Passkey Ready](https://docs.passage.id/passkey-ready) to determine if your users are ready for passkeys.
### In passage-node
Use passage-php to implement Passkey Complete into your PHP backend to authenticate requests and manage users.
| Product | Compatible |
| --- | --- |
| ![Passkey Flex](https://storage.googleapis.com/passage-docs/github-md-assets/passage-passkey-flex-icon.png) Passkey **Flex** | ✖️ For Passkey Flex, check out the [Passkey Flex APIs](https://docs.passage.id/flex/apis)
| ![Passkey Complete](https://storage.googleapis.com/passage-docs/github-md-assets/passage-passkey-complete-icon.png) Passkey **Complete** | ✅
| ![Passkey Ready](https://storage.googleapis.com/passage-docs/github-md-assets/passage-passkey-ready-icon.png) Passkey **Ready** | ✖️ For Passkey Ready, check out [Authentikit](https://www.npmjs.com/package/@passageidentity/authentikit)
## Getting Started
### Check Prerequisites
You'll need a free Passage account and a Passkey Complete app set up in Passage Console to get started.
Learn more about Passage Console →### Install
```shell
composer require passageidentity/passage-php
```### Import
```php
use Passage\Client\Controllers\Passage;
```### Initialize
```php
$app_id = 'YOUR_PASSAGE_APP_ID';
$api_key = 'YOUR_PASSAGE_API_KEY';
$passage = new Passage(
$app_id,
$api_key
);
```### Go Passwordless
Find all core functions, user management details, and more implementation guidance on our [Passkey Complete PHP Documentation](https://docs.passage.id/complete/backend-sdks/php) page.
## Support & Feedback
We are here to help! Find additional docs, the best ways to get in touch with our team, and more within our [support resources](https://github.com/passageidentity/.github/blob/main/SUPPORT.md).
---
Passage is a product by 1Password, the global leader in access management solutions with nearly 150k business customers.
This project is licensed under the MIT license. See the LICENSE file for more info.