-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
57 lines (57 loc) · 1.41 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
54
55
56
57
{
"name": "mbarlow/megaphone",
"description": "UI and admin for Laravel Notifications.",
"keywords": ["Announcements", "Bell Icon", "Notifications", "Livewire", "Laravel"],
"homepage": "https://github.com/mikebarlow/megaphone",
"license": "MIT",
"authors": [
{
"name": "Mike Barlow",
"email": "mike@mikebarlow.co.uk",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"livewire/livewire": "^3.0.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"pestphp/pest-plugin-livewire": "^2.1",
"orchestra/testbench": "^8.10",
"pestphp/pest-plugin-faker": "^2.0",
"brianium/paratest": "^7.2",
"pestphp/pest": "2.16"
},
"autoload": {
"psr-4": {
"MBarlow\\Megaphone\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"MBarlow\\Megaphone\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"MBarlow\\Megaphone\\MegaphoneServiceProvider"
]
}
},
"scripts": {
"test": [
"./vendor/bin/phpcs --standard=PSR2 src",
"./vendor/bin/pest"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}