-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.22 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
48
49
50
51
52
53
{
"name": "rtippin/messenger-faker",
"description": "Messenger Faker Commands",
"license": "MIT",
"authors": [
{
"name": "Richard Tippin",
"email": "[email protected]",
"homepage": "https://tippindev.com"
}
],
"homepage": "https://github.com/rtippin/messenger-faker",
"keywords": [
"Laravel",
"Messenger",
"Faker"
],
"require": {
"php": "^8.2|^8.3",
"fakerphp/faker": "^1.13",
"guzzlehttp/guzzle": "^7.3",
"rtippin/messenger": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "~9.0|^10.0",
"orchestra/testbench": "~7|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"RTippin\\MessengerFaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RTippin\\MessengerFaker\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RTippin\\MessengerFaker\\MessengerFakerServiceProvider"
]
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}