-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
61 lines (61 loc) · 1.51 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
61
{
"name": "swisnl/laravel-fulltext",
"type": "library",
"description": "Fulltext indexing and searching for Laravel",
"keywords": [
"swisnl",
"laravel-fulltext"
],
"homepage": "https://github.com/swisnl/laravel-fulltext",
"license": "MIT",
"authors": [
{
"name": "Björn Brala",
"email": "[email protected]",
"homepage": "https://www.swis.nl/over-ons/bjorn-brala",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Swis\\Laravel\\Fulltext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swis\\Laravel\\Fulltext\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "pint --test",
"fix-style": "pint"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Swis\\Laravel\\Fulltext\\FulltextServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}