-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.3 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
{
"name": "slvler/brave-search-api",
"description": "Brave search api API wrapper for Laravel",
"keywords": [
"brave",
"search",
"laravel",
"php"
],
"homepage": "https://github.com/slvler/brave-search-api",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "slvler",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^10.0"
},
"require-dev": {
"orchestra/testbench": "^8.18",
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.64",
"guzzlehttp/guzzle": "^7.9"
},
"autoload": {
"psr-4": {
"Slvler\\Brave\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slvler\\Brave\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Slvler\\Brave\\BraveServiceProvider"
],
"aliases": {
"Brave": "Slvler\\Brave\\Facades\\Brave"
}
}
},
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit tests",
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"prefer-stable": true
}