-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.22 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"name": "clerkinc/backend-php",
"type": "library",
"autoload": {
"psr-4": {
"Clerk\\Backend\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clerk\\Backend\\Tests\\": "Tests/"
}
},
"license": "MIT",
"require": {
"php": ">=8.2",
"galbar/jsonpath": ">=3.0",
"guzzlehttp/guzzle": "^7.0",
"speakeasy/serializer": "^4.0.3",
"brick/date-time": ">=0.7.0",
"phpdocumentor/type-resolver": ">=1.8",
"brick/math": ">=0.12.1",
"firebase/php-jwt": "^7.0",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"laravel/pint": ">=1.21.2",
"phpstan/phpstan": ">=2.1.0",
"phpunit/phpunit": ">=10",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"process-timeout": 60
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --display-warnings --colors=always"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=2g --error-format=table"
]
},
"script-descriptions": {
"test": "Run PhpUnit test scripts.",
"stan": "Run PhpStan static analysis."
}
}