-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
70 lines (70 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
{
"name": "webgriffe/esb",
"description": "Simple, beanstalkd powered, ESB framework.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Webgriffe SRL",
"email": "support@webgriffe.com"
}
],
"require": {
"php": "~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"ext-pcntl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/dependency-injection": "^4.3",
"symfony/config": "^4.3",
"symfony/yaml": "^4.3",
"amphp/beanstalk": "^0.3.2",
"monolog/monolog": "^1.23",
"dragonmantank/cron-expression": "^2.0",
"twig/twig": "^2.5",
"nikic/fast-route": "^1.3",
"amphp/http-server": "^2.0",
"amphp/amp": "^2.5",
"psr/log": "^1.1",
"amphp/socket": "^1.0",
"amphp/http": "^1.1",
"amphp/file": "^2.0",
"webmozart/assert": "^1.5",
"symfony/serializer": "^4.3",
"symfony/property-access": "^4.3",
"symfony/property-info": "^4.3",
"doctrine/annotations": "^1.8",
"ramsey/uuid": "^3.8",
"webgriffe/amp-elasticsearch": "^2.1",
"pagerfanta/pagerfanta": "^2.4",
"symfony/deprecation-contracts": "^2.1",
"amphp/http-server-form-parser": "^1.1"
},
"autoload": {
"psr-4": {
"Webgriffe\\Esb\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Webgriffe\\Esb\\": ["tests/"]
}
},
"bin": [
"bin/esb"
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"amphp/phpunit-util": "^1.0",
"pda/pheanstalk": "^3.1",
"mikey179/vfsstream": "^1.6",
"amphp/http-client": "^4.6",
"phpstan/phpstan": "^0.12",
"symplify/easy-coding-standard": "^11.1"
},
"scripts": {
"ecs": "vendor/bin/ecs",
"phpstan": "vendor/bin/phpstan analyse --no-progress -l max -c phpstan.neon src/",
"phpunit": "vendor/bin/phpunit",
"tests": ["@ecs", "@phpstan", "@phpunit"]
}
}