-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "danielescherzer/commonmark-ext-pygments-highlighter",
"description": "CommonMark extension for code highlighting with Pygments",
"type": "commonmark-extension",
"authors": [
{
"name": "Daniel E Scherzer",
"homepage": "https://github.com/DanielEScherzer"
}
],
"license": "MIT",
"require": {
"php": "^8.3 || ^8.4",
"league/commonmark": "^2.7",
"ramsey/pygments": "^3.0"
},
"require-dev": {
"danielescherzer/common-phpcs": "0.0.2",
"phpunit/phpunit": "~12.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"symfony/yaml": "6.4.* || 7.2.* || 7.3.*"
},
"autoload": {
"psr-4": {
"DanielEScherzer\\CommonMarkPygmentsHighlighter\\": "src/"
}
},
"scripts": {
"parallel-lint": "parallel-lint . --exclude vendor",
"phpcs": "phpcs -p -s",
"phpunit": "php -d extension=pcov.so -d pcov.enabled=1 -d pcov.directory=. vendor/bin/phpunit",
"phpunit:update-expected": "TESTS_UPDATE_EXPECTED=1 php vendor/bin/phpunit",
"lint": [
"@parallel-lint",
"@phpcs"
],
"test": [
"@phpunit",
"@lint"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}