-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.72 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
{
"name": "statamic-rad-pack/typesense",
"description": "typesense search driver for Statamic",
"keywords": [
"statamic",
"typesense",
"search"
],
"homepage": "https://github.com/statamic-rad-pack/typesense",
"license": "MIT",
"authors": [
{
"name": "Ryan Mitchell",
"email": "[email protected]",
"homepage": "https://github.com/ryanmitchell",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.3",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/support": "^10.0|^11.0",
"statamic/cms": "^5.38",
"typesense/typesense-php": "^4.9"
},
"require-dev": {
"laravel/pint": "^1.17",
"orchestra/testbench": "^8.14 || ^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"StatamicRadPack\\Typesense\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StatamicRadPack\\Typesense\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "php-cs-fixer fix --allow-risky=yes"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"StatamicRadPack\\Typesense\\ServiceProvider"
]
},
"statamic": {
"name": "Typesense",
"description": "Typesense search driver for Statamic"
}
}
}