-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.37 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
{
"name": "trendyminds/algolia",
"description": "Easily pull search results from Algolia into your Craft CMS website",
"type": "craft-plugin",
"version": "4.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"algolia"
],
"support": {
"docs": "https://github.com/trendyminds/algolia/blob/master/README.md",
"issues": "https://github.com/trendyminds/algolia/issues"
},
"license": "MIT",
"authors": [
{
"name": "TrendyMinds",
"homepage": "https://trendyminds.com"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"algolia/algoliasearch-client-php": "^3.2"
},
"autoload": {
"psr-4": {
"trendyminds\\algolia\\": "src/"
}
},
"extra": {
"name": "Algolia",
"handle": "algolia",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/trendyminds/algolia/master/CHANGELOG.md",
"components": {
"algoliaService": "trendyminds\\algolia\\services\\AlgoliaService"
},
"class": "trendyminds\\algolia\\Algolia"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}