-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (66 loc) · 1.88 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "passageidentity/passage-php",
"description": "Passkey Complete for PHP - Integrate into your PHP API or service to enable a completely passwordless standalone auth solution with Passage by 1Password.",
"version": "0.5.0",
"keywords": [
"authentication",
"passkeys",
"passwordless",
"webauthn",
"passkey-complete",
"biometrics",
"ciam",
"identity",
"magic-links",
"oauth2",
"oidc",
"otp",
"1password",
"passage",
"passage-sdk"
],
"homepage": "http://docs.passage.id/complete",
"license": "MIT",
"authors": [
{
"name": "Passage by 1Password",
"homepage": "https://passage.1password.com/"
}
],
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR12 --report=full custom",
"phpcs-fix": "./vendor/bin/phpcbf --standard=PSR12 custom",
"format": "./vendor/bin/php-cs-fixer fix --allow-risky=yes --rules=@PSR12"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"firebase/php-jwt": "^6.5.0",
"phpfastcache/phpfastcache": "^9.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.5",
"squizlabs/php_codesniffer": "^3.0",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"OpenAPI\\Client\\": [
"generated/lib/",
"custom/models/"
],
"Passage\\Client\\": "custom/lib/"
}
},
"autoload-dev": {
"psr-4": {
"OpenAPI\\Client\\Test\\": "generated/test/",
"Passage\\Client\\Test\\": "custom/test/"
}
}
}