-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 966 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 966 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "vapi/vapi",
"version": "1.0.1",
"description": "Vapi PHP Library",
"keywords": [
"vapi",
"api",
"sdk"
],
"license": [],
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"php-http/discovery": "^1.0",
"php-http/multipart-stream-builder": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "3.5.0",
"phpstan/phpstan": "^1.12",
"guzzlehttp/guzzle": "^7.4"
},
"autoload": {
"psr-4": {
"Vapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vapi\\Tests\\": "tests/"
}
},
"scripts": {
"build": [
"@php -l src",
"@php -l tests"
],
"test": "phpunit",
"analyze": "phpstan analyze src tests --memory-limit=1G"
}
}