-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
52 lines (52 loc) · 1.43 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
{
"name": "baril/sqlout",
"description": "MySQL fulltext driver for Laravel Scout.",
"keywords": [
"laravel", "scout", "mysql", "fulltext", "search"
],
"license": "MIT",
"type": "library",
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "^8.79|^9.46|^10.0",
"illuminate/support": "^8.79|^9.46|^10.0",
"laravel/scout": "^9.0|^10.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wamania/php-stemmer": "^3.0",
"orchestra/testbench": "^6.23|^7.0|^8.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Baril\\Sqlout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Baril\\Sqlout\\Tests\\": "tests/"
}
},
"suggest": {
"wamania/php-stemmer": "PHP stemmer that can be used together with Sqlout.",
"baril/smoothie": "Some fruity additions to Laravel's Eloquent."
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
},
"laravel": {
"providers": [
"Baril\\Sqlout\\SqloutServiceProvider"
]
}
},
"scripts": {
"sniff": "./vendor/bin/phpcs --standard=./phpcs.xml ./src",
"fix": "./vendor/bin/phpcbf --standard=./phpcs.xml ./src",
"test": "vendor/bin/phpunit --colors=always --testdox -v"
}
}