-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.33 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.33 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": "php-collective/djot",
"description": "A PHP parser for Djot, a modern light markup language",
"type": "library",
"license": "MIT",
"keywords": ["djot", "markup", "parser", "markdown"],
"authors": [
{
"name": "PHP Collective",
"homepage": "https://github.com/php-collective"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"nikic/php-fuzzer": "^0.0.11",
"php-collective/code-sniffer": "dev-master",
"phpstan/phpstan": "^2.1.32",
"phpunit/phpunit": "^11.0 || ^12.0 || ^13.0"
},
"autoload": {
"psr-4": {
"Djot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Djot\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors --parallel=16",
"cs-fix": "phpcbf --colors --parallel=16",
"fuzz": "php-fuzzer fuzz fuzz/target.php fuzz/corpus/",
"fuzz-strict": "php-fuzzer fuzz fuzz/target-strict.php fuzz/corpus/",
"stan": "phpstan analyze",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"bin/djot"
]
}