-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.09 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "umbrellio/php-table-sync",
"description": "PHP's implementation of the library providing data synchronization between microservices",
"keywords": [
"php",
"laravel",
"monolog",
"rabbit",
"sync",
"table_sync",
"umbrellio"
],
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-posix": "*",
"php-amqplib/php-amqplib": "^3.0",
"laravel/framework": "^10.0|^11.0|^12.0",
"thecodingmachine/safe": "^2.0",
"umbrellio/laravel-heavy-jobs": "^3.5",
"monolog/monolog": "^3.0",
"influxdb/influxdb-php": "^1.15"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0",
"php-mock/php-mock": "^2.0",
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"mockery/mockery": "^1.0",
"mikey179/vfsstream": "^1.6",
"symplify/easy-coding-standard": "^11.0",
"laravel/legacy-factories": "*",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.5"
},
"authors": [
{
"name": "vetal",
"email": "vetal@umbrellio.biz"
},
{
"name": "Korben Dallas",
"email": "pvsaintpe@icloud.com"
}
],
"support": {
"issues": "https://github.com/umbrellio/php-table-sync/issues",
"source": "https://github.com/umbrellio/php-table-sync"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Umbrellio\\TableSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Umbrellio\\TableSync\\Tests\\": "tests/"
}
},
"scripts": {
"lint-fix":[
"vendor/bin/ecs check src tests -c ecs.php --fix"
]
},
"extra": {
"laravel": {
"providers": [
"Umbrellio\\TableSync\\Integration\\Laravel\\TableSyncServiceProvider",
"Umbrellio\\TableSync\\Integration\\Laravel\\InfluxDBServiceProvider"
]
}
}
}