-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.6 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.6 KB
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
{
"name": "userqq/mysql-binlog",
"type": "library",
"license": "MIT",
"description": "MySQL/MariaDB binlog listener",
"keywords": [
"cdc",
"change data capture",
"changedatacapture",
"replication",
"replica",
"binlog",
"binlog2json",
"events",
"php",
"mysql",
"mariadb",
"mysql replication",
"mysql replication protocol",
"mysql replication listener",
"mysql binlog",
"mysql binlog events",
"mariadb replication",
"mariadb replication protocol",
"mariadb replication listener",
"mariadb binlog",
"mariadb binlog events"
],
"prefer-stable": true,
"config": {
"platform": {
"php": "8.1"
}
},
"autoload": {
"psr-4": {
"UserQQ\\MySQL\\Binlog\\": "src/"
}
},
"require": {
"php": "^8.1",
"ext-gmp": "*",
"ext-pcntl": "*",
"amphp/amp": "^3",
"amphp/file": "^3",
"amphp/log": "v2.0.0-beta.2",
"amphp/socket": "^2",
"monolog/monolog": "^3",
"revolt/event-loop": "^1"
},
"require-dev": {
"phpstan/phpstan": "^1.1",
"psalm/phar": "^5.9",
"amphp/php-cs-fixer-config": "^2",
"phpunit/phpunit": "^9"
},
"support": {
"issues": "https://github.com/userqq/mysql-binlog/issues"
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}