-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
67 lines (67 loc) · 1.86 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
62
63
64
65
66
67
{
"name": "testmonitor/eloquent-searchable",
"description": "A Laravel package that adds search functionality to Eloquent models, allowing for various search techniques such as exact and partial matches.",
"type": "library",
"keywords": [
"testmonitor",
"search",
"eloquent",
"model",
"laravel"
],
"authors": [
{
"name": "Thijs Kok",
"email": "tkok@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Lead Developer"
},
{
"name": "Stephan Grootveld",
"email": "sgrootveld@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
},
{
"name": "Frank Keulen",
"email": "fkeulen@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/database": "^11.0",
"illuminate/config": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.7",
"squizlabs/php_codesniffer": "^3.6",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"TestMonitor\\Searchable\\": "src",
"TestMonitor\\Searchable\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"TestMonitor\\Searchable\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"TestMonitor\\Searchable\\SearchableServiceProvider"
]
}
},
"license": "MIT"
}