-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
103 lines (103 loc) · 3.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "swoft/ext",
"type": "library",
"keywords": [
"php",
"Swoft",
"Swoole",
"swoft-ext"
],
"description": "micro-service framework base on Swoole",
"license": "Apache-2.0",
"require": {
"php": ">7.1.0",
"filp/whoops": "^2.4",
"php-amqplib/php-amqplib": "^2.9",
"symfony/expression-language": "~4.3",
"text/template": "~2.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.0",
"swoft/swoole-ide-helper": "dev-master"
},
"replace": {
"swoft/amqp": "self.version",
"swoft/apollo": "self.version",
"swoft/breaker": "self.version",
"swoft/consul": "self.version",
"swoft/crontab": "self.version",
"swoft/limiter": "self.version",
"swoft/session": "self.version",
"swoft/swoole-tracker": "self.version",
"swoft/view": "self.version",
"swoft/whoops": "self.version"
},
"autoload": {
"psr-4": {
"Swoft\\Amqp\\": "src/amqp/src/",
"Swoft\\Apollo\\": "src/apollo/src/",
"Swoft\\Breaker\\": "src/breaker/src/",
"Swoft\\Consul\\": "src/consul/src/",
"Swoft\\Crontab\\": "src/crontab/src/",
"Swoft\\Devtool\\": "src/devtool/src/",
"Swoft\\Elasticsearch\\": "src/elasticsearch/src/",
"Swoft\\Http\\Session\\": "src/session/src/",
"Swoft\\Grpc\\": "src/grpc/src/",
"Swoft\\Limiter\\": "src/limiter/src/",
"Swoft\\Kafka\\": "src/kafka/src/",
"Swoft\\Swagger\\": "src/swagger/src/",
"Swoft\\Swoole\\Tracker\\": "src/swoole-tracker/src/",
"Swoft\\View\\": "src/view/src/",
"Swoft\\Whoops\\": "src/whoops/src/",
"Swoft\\Zipkin\\": "src/zipkin/src/"
},
"files": [
]
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Breaker\\Unit\\": "src/breaker/test/unit/",
"SwoftTest\\Breaker\\Testing\\": "src/breaker/test/testing/",
"SwoftTest\\Consul\\Testing\\": "src/consul/test/testing/",
"SwoftTest\\Consul\\Unit\\": "src/consul/test/unit/",
"SwoftTest\\Limiter\\Unit\\": "src/limiter/test/unit/",
"SwoftTest\\Limiter\\Testing\\": "src/limiter/test/testing/",
"SwoftTest\\Amqp\\Testing\\": "src/amqp/test/testing/",
"SwoftTest\\Amqp\\Unit\\": "src/amqp/test/unit/",
"SwoftTest\\Apollo\\Testing\\": "src/apollo/test/testing/",
"SwoftTest\\Apollo\\Unit\\": "src/apollo/test/unit/",
"SwoftTest\\Elasticsearch\\Testing\\": "src/elasticsearch/test/testing/",
"SwoftTest\\Elasticsearch\\Unit\\": "src/elasticsearch/test/unit/",
"SwoftTest\\Grpc\\Testing\\": "src/grpc/test/testing/",
"SwoftTest\\Grpc\\Unit\\": "src/grpc/test/unit/",
"SwoftTest\\Kafka\\Testing\\": "src/kafka/test/testing/",
"SwoftTest\\Kafka\\Unit\\": "src/kafka/test/unit/",
"SwoftTest\\Swagger\\Testing\\": "src/swagger/test/testing/",
"SwoftTest\\Swagger\\Unit\\": "src/swagger/test/unit/",
"SwoftTest\\Zipkin\\Testing\\": "src/zipkin/test/testing/",
"SwoftTest\\Zipkin\\Unit\\": "src/zipkin/test/unit/",
"SwoftTest\\Devtool\\Testing\\": "src/devtool/test/testing/",
"SwoftTest\\Devtool\\Unit\\": "src/devtool/test/unit/",
"SwoftTest\\View\\Testing\\": "src/view/test/testing/",
"SwoftTest\\View\\Unit\\": "src/view/test/unit/",
"SwoftTest\\Http\\Session\\Testing\\": "src/session/test/testing/",
"SwoftTest\\Http\\Session\\Unit\\": "src/session/test/unit/",
"SwoftTest\\Crontab\\Testing\\": "src/crontab/test/testing/",
"SwoftTest\\Crontab\\Unit\\": "src/crontab/test/unit/",
"SwoftTest\\Swoole\\Tracker\\Testing\\": "src/swoole-tracker/test/testing/",
"SwoftTest\\Swoole\\Tracker\\Unit\\": "src/swoole-tracker/test/unit/",
"SwoftTest\\Whoops\\Testing\\": "src/whoops/test/testing/",
"SwoftTest\\Whoops\\Unit\\": "src/whoops/test/unit/"
}
},
"extra": {
"branch-alias": {
}
},
"scripts": {
"test": "echo hello",
"breaker": "php run.php -c src/breaker/phpunit.xml",
"consul": "php run.php -c src/consul/phpunit.xml",
"limiter": "php run.php -c src/limiter/phpunit.xml"
}
}