forked from softonic/KillerBees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.29 KB
/
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
45
46
{
"name": "softonic/killerbees",
"version": "1.0.0-beta",
"type": "project",
"description": "HTTP stress test tool using Amazon EC2 machines to simulate high concurrency user activity.",
"keywords": ["stress test","load test","ddos","amazon","ec2"],
"license": "Apache-2.0",
"authors": [
{
"name": "Narcis Davins",
"email": "[email protected]",
"homepage": "http://www.softonic.com",
"role": "Architecture Engineer"
},
{
"name": "Zoltan Toth-Czifra",
"email": "[email protected]",
"homepage": "http://www.softonic.com",
"role": "Architecture Engineer"
}
],
"require": {
"php": ">=5.3",
"ext-ssh2": "*",
"ext-pcntl": "*",
"amazonwebservices/aws-sdk-for-php": "*",
"symfony/yaml" : "*",
"kriswallsmith/buzz": "*",
"symfony/console": "*",
"symfony/dependency-injection": "*",
"symfony/config": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload-dev": {
"psr-4": {
"KillerBees\\": "test/KillerBees/"
}
},
"autoload": {
"psr-4": {
"KillerBees\\": "src/KillerBees/"
}
}
}