forked from silverstripe/silverstripe-search-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "silverstripe/silverstripe-search-service",
"description": "Elastic App Search Functionality",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Will Rossiter",
"email": "[email protected]"
},
{
"name": "Aaron Carlino",
"email": "[email protected]"
}
],
"require": {
"symbiote/silverstripe-queuedjobs": "^4.0.0",
"elastic/app-search": "^7.6",
"silverstripe/versioned": "^1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"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/"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\SearchService\\": "src/",
"SilverStripe\\SearchService\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}