This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.62 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
58
59
60
{
"name": "arkecosystem/hermes",
"description": "Notifications and accompanying UI for Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "hello@basecode.sh"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0",
"livewire/livewire": "^2.6",
"arkecosystem/ui": "^5.0",
"arkecosystem/fortify": "^6.0"
},
"autoload": {
"psr-4": {
"ARKEcosystem\\Hermes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ARKEcosystem\\Hermes\\HermesServiceProvider"
]
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"graham-campbell/analyzer": "^3.0",
"mockery/mockery": "^1.3.1",
"nunomaduro/larastan": "^0.6.4",
"nunomaduro/laravel-mojito": "^0.2.6",
"pestphp/pest": "^0.3.0",
"pestphp/pest-plugin-faker": "^0.3.0",
"pestphp/pest-plugin-laravel": "^0.3.0",
"pestphp/pest-plugin-livewire": "^0.3.0",
"phpunit/phpunit": "^9.3",
"teamtnt/laravel-scout-tntsearch-driver": "^10.0",
"orchestra/testbench": "^6.2"
},
"minimum-stability": "dev",
"prefer-stable": true
}