-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 882 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 882 Bytes
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
{
"name": "logto/sdk",
"description": "Logto PHP SDK.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Logto\\Sdk\\": "src/"
}
},
"scripts": {
"dev": ["Composer\\Config::disableProcessTimeout", "php -S localhost:8080 -t samples"],
"test": "phpunit tests",
"docs": "rm -rf docs/api && php phpDocumentor.phar && prettier --write docs/api"
},
"authors": [
{
"name": "Silverhand Inc.",
"email": "contact@silverhand.io"
}
],
"require": {
"php": ">=8.1",
"firebase/php-jwt": "^7.0",
"guzzlehttp/guzzle": "^7.7",
"phpfastcache/phpfastcache": "^9.1",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^10",
"saggre/phpdocumentor-markdown": "^0.1.3"
}
}