Skip to content

Commit

Permalink
Update Configs
Browse files Browse the repository at this point in the history
  • Loading branch information
RamiiYoussef committed Feb 26, 2024
1 parent 529dff8 commit 8dbd6d3
Show file tree
Hide file tree
Showing 40 changed files with 6,705 additions and 9,597 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ composer require ramiiyoussef/laravel-kafka
This package is using Laravel's package auto-discovery, so it doesn't require you to manually add the ServiceProvider. If you've opted out of this feature, add the ServiceProvider to the providers array in config/app.php:

```php
RamiiYoussef\Kafka\ServiceProvider::class,
RamiiYoussef\Kafka\KafkaServiceProvider::class,
```

```bash
php artisan vendor:publish --provider="RamiiYoussef\Kafka\ServiceProvider"
php artisan vendor:publish --provider="RamiiYoussef\Kafka\KafkaServiceProvider"
```

## Licence
Expand Down
26 changes: 16 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
"type": "library",
"license": "MIT",
"version": "1.0.1",
"keywords": [
"php",
"laravel",
"kafka",
"queue"
],
"authors": [
{
"name": "Rami Youssef",
Expand All @@ -18,18 +24,17 @@
"require": {
"php": ">=8.1",
"ext-rdkafka": "*",
"enqueue/rdkafka": "^0.10",
"graham-campbell/manager": "^5.1"
"ext-json": "*"
},
"require-dev": {
"graham-campbell/analyzer": "^4.1",
"graham-campbell/testbench": "^6.1",
"hamcrest/hamcrest-php": "^2.0",
"kwn/php-rdkafka-stubs": "^2.2",
"mockery/mockery": "^1.6",
"phpro/grumphp": "^2.5",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.9"
"squizlabs/php_codesniffer": "^3.9",
"phpstan/phpstan-mockery": "^1.0",
"slevomat/coding-standard": "^6.4",
"orchestra/testbench": "^7.33.0 || ^8.13.0 || ^9.0.0",
"larastan/larastan": "^2.9"
},
"autoload": {
"psr-4": {
Expand All @@ -44,15 +49,16 @@
"extra": {
"laravel": {
"providers": [
"RamiiYoussef\\Kafka\\ServiceProvider"
"RamiiYoussef\\Kafka\\KafkaServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpro/grumphp": true
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
}
Loading

0 comments on commit 8dbd6d3

Please sign in to comment.