forked from markbarnes/sermon-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.59 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
{
"name": "sermon-browser/sermon-browser",
"description": "WordPress plugin for managing and displaying sermons",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=8.0"
},
"require-dev": {
"brain/monkey": "^2.6",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5.50",
"brianium/paratest": "^7.8",
"squizlabs/php_codesniffer": "^3.8",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-coding-standards/wpcs": "^3.3",
"yoast/phpunit-polyfills": "^3.0"
},
"autoload": {
"psr-4": {
"SermonBrowser\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"SermonBrowser\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite Unit",
"test:integration": "phpunit --testsuite Integration",
"test:coverage": "phpunit --coverage-html coverage/html --coverage-clover coverage/clover.xml",
"test:ci": "phpunit --coverage-clover coverage/clover.xml",
"sonar": [
"@test:ci",
"sonar-scanner"
],
"phpcs": "vendor/bin/phpcs --standard=.phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=.phpcs.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}