-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 891 Bytes
/
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
38
39
40
41
42
43
44
{
"name": "kodekraft/open-swarm",
"description": "OpenSwarm is an HTTP load testing and benchmarking utility.",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Brett Larson"
}
],
"require": {
"php": ">=7.0.0",
"guzzlehttp/guzzle": "^6.2",
"symfony/console": "^3.3|^4.0",
"symfony/stopwatch": "^3.3|^4.0",
"league/flysystem": "^1.0",
"ramsey/uuid": "^3.7",
"jms/serializer": "^1.10",
"symfony/yaml": "^3.3|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"symfony/framework-bundle": "^3.3|^4.0"
},
"autoload": {
"psr-4": {
"KodeKraft\\OpenSwarm\\": "app/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"KodeKraft\\OpenSwarm\\Tests\\": "tests/"
}
},
"bin": [
"open-swarm"
]
}