-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.48 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "volt-test/php-sdk",
"description": "Volt Test PHP SDK - A performance testing tool for PHP Developers",
"type": "library",
"version": "1.1.1",
"keywords": [
"volt-test",
"php-sdk",
"performance-testing",
"load-testing",
"stress-testing",
"http"
],
"homepage": "https://php.volt-test.com",
"license": "MIT",
"support": {
"issues": "https://github.com/volt-test/php-sdk/issues",
"source": "https://github.com/volt-test/php-sdk/"
},
"authors": [
{
"name": "elwafa",
"email": "islam@volt-test.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-curl": "*",
"ext-pcntl": "*"
},
"autoload": {
"psr-4": {
"VoltTest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"VoltTest\\Platform::installBinary"
],
"post-update-cmd": [
"VoltTest\\Platform::installBinary"
],
"volt-test": [
"VoltTest\\Platform::installBinary"
],
"test": "phpunit",
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff",
"cs-check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff",
"analyze": "phpstan analyze",
"check": [
"@cs-check",
"@analyze",
"@test"
]
},
"config": {
"bin-dir": "vendor/bin"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.51"
}
}