-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.56 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "monadial/phpunit-docrunner",
"description": "Rust-style doc tests for PHP - run code examples in docblocks as PHPUnit tests",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=8.4",
"nikic/php-parser": "^5.0",
"fp4php/functional": "^6.0",
"azjezz/psl": "^3.0",
"symfony/console": "^7.0",
"symfony/process": "^7.0",
"nette/php-generator": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.1",
"shipmonk/phpstan-rules": "^4.0",
"squizlabs/php_codesniffer": "^3.11",
"pixelfederation/coding-standards": "^4.0",
"infection/infection": "*",
"phpro/grumphp-shim": "^2.10"
},
"autoload": {
"psr-4": {
"Monadial\\DocRunner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Monadial\\DocRunner\\Tests\\": "tests/"
}
},
"bin": [
"bin/doctest"
],
"scripts": {
"phpcs": "phpcs --standard=phpcs.ruleset.xml src",
"phpstan": "phpstan analyse --no-progress",
"phpunit": "phpunit",
"phpcbf": "phpcbf --standard=phpcs.ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"infection": "infection --threads=4 --show-mutations"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
}
}