-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.91 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
{
"name": "suilven/silverstripe-manticore-search",
"type": "silverstripe-vendormodule",
"description": "Search SilverStripe using Manticore",
"keywords": [
"SilverStripe",
"Manticore",
"ManticoreSearch",
"search"
],
"homepage": "https://github.com/suilven/silverstripe-manticore-search",
"license": "MIT",
"authors": [
{
"name": "Gordon Anderson",
"email": "[email protected]",
"homepage": "https://github.com/gordonbanderson",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"manticoresoftware/manticoresearch-php": "dev-master",
"silverstripe/cms": "^4",
"suilven/freetextsearch": "^1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^5.7",
"slevomat/coding-standard": "^7"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Suilven\\ManticoreSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Suilven\\ManticoreSearch\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"checkCode": "composer checkcs && composer lint && composer phpstan",
"checkcs": "vendor/bin/phpcs --standard=ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"fixcs": "vendor/bin/phpcbf --standard=ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"lint": "vendor/bin/parallel-lint src/ tests/",
"phpstan": "vendor/bin/phpstan analyse --level=8 -c tests/phpstan.neon src/"
}
}