generated from JBZoo/Skeleton-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (60 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name" : "jbzoo/mock-server",
"type" : "library",
"description" : "Flexible HTTP mocking application for testing and fast prototyping",
"keywords" : [
"testing", "mock", "php", "http", "mock-server", "stubbing",
"http-server", "prototyping", "jbzoo", "httpmock", "mmock"
],
"license" : "MIT",
"authors" : [
{
"name" : "Denis Smetannikov",
"email" : "[email protected]",
"role" : "lead"
}
],
"require" : {
"php" : ">=7.2",
"ext-pcntl" : "*",
"amphp/amp" : "^2.5.2",
"amphp/log" : "^1.1.0",
"amphp/file" : "^1.0.2",
"amphp/http-client" : "^4.5.5",
"amphp/http-server" : "^2.1.2",
"amphp/http-server-router" : "^1.0.2",
"amphp/http-server-form-parser" : "^1.1.4",
"jbzoo/data" : "^4.3.1",
"jbzoo/utils" : "^4.5.2",
"symfony/console" : ">=4.4.24",
"symfony/yaml" : ">=5.2.9",
"monolog/monolog" : "^2.2.0",
"yosymfony/resource-watcher" : "^3.0.0",
"winzou/state-machine" : "^0.4.1"
},
"require-dev" : {
"jbzoo/http-client" : "^3.6.1",
"jbzoo/toolbox-dev" : "^2.13.1",
"guzzlehttp/guzzle" : "^7.3.0"
},
"bin" : ["jbzoo-mock-server"],
"autoload" : {
"psr-4" : {
"JBZoo\\MockServer\\" : "src"
},
"files" : ["src/functions.php"]
},
"autoload-dev" : {
"classmap" : ["tests"]
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config" : {
"optimize-autoloader" : true
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.x-dev"
}
}
}