Skip to content

Commit 58e91ef

Browse files
committed
init package
1 parent 5b8547e commit 58e91ef

File tree

5 files changed

+4854
-21
lines changed

5 files changed

+4854
-21
lines changed

.gitignore

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
11
/vendor/
2-
node_modules/
3-
npm-debug.log
4-
yarn-error.log
5-
6-
# Laravel 4 specific
7-
bootstrap/compiled.php
8-
app/storage/
9-
10-
# Laravel 5 & Lumen specific
11-
public/storage
12-
public/hot
13-
14-
# Laravel 5 & Lumen specific with changed public path
15-
public_html/storage
16-
public_html/hot
17-
18-
storage/*.key
19-
.env
20-
Homestead.yaml
21-
Homestead.json
22-
/.vagrant
2+
.idea
233
.phpunit.result.cache

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "iamfarhad/laravel-rabbitmq",
3+
"description": "the best laravel rabbitmq package",
4+
"keywords": ["rabbitmq", "message", "queue", "laravel", "job"],
5+
"type": "library",
6+
"require": {
7+
"php": "^8.1",
8+
"php-amqplib/php-amqplib": "^3.4"
9+
},
10+
"require-dev": {
11+
"ext-json": "*",
12+
"illuminate/queue": "^9.0",
13+
"phpunit/phpunit": "^9.5",
14+
"squizlabs/php_codesniffer": "^3.7"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Iamfarhad\\LaravelRabbitMQ\\": "src/"
19+
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Iamfarhad\\LaravelRabbitMQ\\Tests\\Unit\\": "tests/Unit"
24+
}
25+
},
26+
"license": "MIT",
27+
"authors": [
28+
{
29+
"name": "Farhad Zand",
30+
"email": "farhad.pd@gmail.com"
31+
}
32+
],
33+
"minimum-stability": "dev"
34+
}

0 commit comments

Comments
 (0)