This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.5 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
{
"name": "trendyminds/craft-cargo",
"description": "A driver-based search indexer supporting Algolia out-of-the-box",
"type": "craft-plugin",
"version": "1.0.0",
"license": "MIT",
"support": {
"issues": "https://github.com/trendyminds/craft-cargo/issues?state=open",
"source": "https://github.com/trendyminds/craft-cargo",
"docs": "https://github.com/trendyminds/craft-cargo",
"rss": "https://github.com/trendyminds/craft-cargo/releases.atom"
},
"require": {
"php": ">=8.0.2",
"algolia/algoliasearch-client-php": "^3.3",
"craftcms/cms": "^4.3.6.1",
"league/fractal": "^0.20.1"
},
"autoload": {
"psr-4": {
"trendyminds\\cargo\\": "src/"
}
},
"extra": {
"handle": "cargo",
"name": "Cargo",
"developer": "TrendyMinds",
"documentationUrl": "https://github.com/trendyminds/craft-cargo",
"class": "trendyminds\\cargo\\Cargo"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
},
"require-dev": {
"craftcms/craft": "^2.0",
"laravel/pint": "^1.4",
"markhuot/craft-pest": "@dev",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-mock": "^1.0",
"spatie/ray": "^1.36"
}
}