-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
63 lines (63 loc) · 1.46 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
{
"name": "evilfreelancer/laravel-manticoresearch",
"description": "An easy way to use the official ManticoreSearch client in your Laravel applications",
"type": "library",
"homepage": "https://github.com/EvilFreelancer/laravel-manticoresearch",
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"psr/log": ">=1.1",
"manticoresoftware/manticoresearch-php": "^1.6",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0"
},
"suggest": {
"ext-curl": "*",
"monolog/monolog":"*"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0",
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^2.18"
},
"license": "MIT",
"authors": [
{
"name": "Paul Rock",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"ManticoreSearch\\Laravel\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ManticoreSearch\\Laravel\\": "./tests/"
}
},
"scripts": {
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:unit": "phpunit",
"test": [
"@test:lint",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"ManticoreSearch\\Laravel\\ServiceProvider"
],
"aliases": {
"ManticoreSearch": "ManticoreSearch\\Laravel\\Facade"
}
}
}
}