forked from mateusjunges/laravel-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "dbtk1990/laravel-kafka-74",
"description": "A kafka driver for laravel for php 7.4",
"type": "library",
"require": {
"php": "^7.4",
"ext-rdkafka": "^5.0|^4.0",
"monolog/monolog": "^2.3",
"flix-tech/avro-serde-php": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.20",
"predis/predis": "^1.1",
"friendsofphp/php-cs-fixer": "^3.0",
"rector/rector": "^0.12.10"
},
"autoload": {
"psr-4": {
"Junges\\Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Junges\\Kafka\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "mateusjunges",
"email": "[email protected]",
"role": "Backend Software Engineer"
}
],
"scripts": {
"test": "vendor/bin/phpunit tests",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes --config=.php_cs.dist.php"
},
"extra": {
"laravel": {
"providers": [
"Junges\\Kafka\\Providers\\LaravelKafkaServiceProvider"
]
}
}
}