-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.16 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
{
"name": "corbado/php-sdk",
"description": "Add passkeys to your PHP application with the Corbado PHP SDK.",
"homepage": "https://www.corbado.com/passkeys/php",
"authors": [
{
"name": "Vincent Delitz",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Corbado\\": "src/",
"integration\\": "tests/integration/"
}
},
"require": {
"guzzlehttp/guzzle": "^7.5",
"psr/cache": "^3.0",
"firebase/php-jwt": "^6.4",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.40"
},
"scripts": {
"analyze": "vendor/bin/phpstan --memory-limit=1000000000 analyze src tests",
"unittests": "vendor/bin/phpunit --colors=always --bootstrap vendor/autoload.php tests/unit",
"integrationtests": "vendor/bin/phpunit --colors=always --bootstrap vendor/autoload.php tests/integration",
"cs-check": "vendor/bin/php-cs-fixer check --diff --config=.php-cs-fixer.php",
"cs-fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"generate-openapi": "sh scripts/generate-openapi.sh"
}
}