-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
executable file
·72 lines (72 loc) · 2.17 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
68
69
70
71
72
{
"name": "craftpulse/craft-typesense",
"description": "Craft Plugin that synchronises with Typesense",
"type": "craft-plugin",
"version": "5.4.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"typesense"
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/percipioglobal/craft-typesense/blob/master/README.md",
"issues": "https://github.com/percipioglobal/craft-typesense/issues",
"source": "https://github.com/percipioglobal/craft-typesense"
},
"license": "MIT",
"authors": [
{
"name": "percipiolondon",
"homepage": "https://percipio.london"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"illuminate/collections": "^9.10.0",
"nystudio107/craft-plugin-vite": "^4.0.0",
"typesense/typesense-php": "^4.7.0",
"php-http/guzzle7-adapter": "^1.0.0"
},
"require-dev": {
"craftcms/phpstan":"dev-main",
"codeception/codeception": "^5.0",
"vlucas/phpdotenv": "^3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"percipiolondon\\typesense\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "Typesense",
"handle": "typesense",
"developer": "percipiolondon",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-typesense/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/craft-typesense/master/CHANGELOG.md",
"components": {
"typesenseService": "percipiolondon\\typesense\\services\\TypesenseService"
},
"class": "percipiolondon\\typesense\\Typesense"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true,
"php-http/discovery": true
}
}
}