-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.32 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
{
"name": "texthtml/doctest",
"description": "Test code examples in PHP comments",
"type": "project",
"license": "AGPL-3.0-or-later",
"autoload": {
"psr-4": {
"TH\\DocTest\\": "src/"
}
},
"bin": ["bin/doctest"],
"autoload-dev": {
"psr-4": {
"TH\\DocTest\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mathieu Rochette",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"composer-runtime-api": "^2.2.2",
"symfony/finder": "^6.1|^7.0",
"symfony/console": "^6.1|^7.0",
"symfony/event-dispatcher": "^6.1|^7.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^11.0|^10.0",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}