-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.77 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
{
"name": "weboftalent\/cachekeyhelper",
"description": "Centralise partial queries into a single query to improve performance",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"caching",
"partials",
"performance",
"weboftalent"
],
"authors": [
{
"name": "Gordon Anderson",
"email": "[email protected]",
"homepage": "https:\/\/github.com\/gordonbanderson\/weboftalent-cachekey-helper",
"role": "Developer"
}
],
"support": {
"issues": "https:\/\/github.com\/gordonbanderson\/weboftalent-cachekey-helper\/issues"
},
"require": {
"php": "^7.1",
"silverstripe\/framework": "^4",
"slevomat/coding-standard": "^7.0"
},
"require-dev": {
"phpunit\/phpunit": "^5.7",
"php-parallel-lint\/php-parallel-lint": "^1.3",
"php-parallel-lint\/php-console-highlighter": "^0.5.0",
"phpstan\/phpstan-strict-rules": "^1.1",
"phpstan\/extension-installer": "^1.1"
},
"autoload": {
"psr-4": {
"WebOfTalent\\Cache\\": "src\/",
"WebOfTalent\\Cache\\Tests\\": "tests\/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"scripts": {
"checkCode": "composer lint && composer checkcs && 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 --memory-limit=2G --level=8 -c tests/phpstan.neon src/",
"test": "vendor/bin/phpunit tests"
}
}