-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
48 lines (48 loc) · 1.3 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
{
"name": "wilr/silverstripe-algolia",
"description": "Algolia Indexer and Search Functionality",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Will Rossiter",
"email": "[email protected]"
}
],
"require": {
"php": "^8",
"symbiote/silverstripe-queuedjobs": "^4 || ^5",
"algolia/algoliasearch-client-php": "^3",
"ramsey/uuid": "^4",
"masterminds/html5": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"lint": "phpcs --extensions=php src/ tests/",
"syntax-check": "find src/ tests/ -type f -name '*.php' -exec php -l {} \\;",
"lint-clean": "phpcbf src/ tests/",
"test": "phpunit tests"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Wilr\\Silverstripe\\Algolia\\": "src/",
"Wilr\\Silverstripe\\Algolia\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}