forked from pomodocs/commonmark-alert
-
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.57 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.57 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": "pomodocs/commonmark-alert",
"description": "CommonMark extension to support alerts in Github blockquote style",
"license": "MIT",
"type": "commonmark-extension",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PomoDocs\\CommonMark\\Alert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PomoDocs\\CommonMark\\Alert\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"league/commonmark": "^2.7"
},
"require-dev": {
"pestphp/pest": "^4.1"
},
"scripts": {
"analytics": "tools/phpstan analyze",
"check": [
"@cs:fix",
"@test",
"@analytics"
],
"coverage:html": "@test --coverage-html coverage/",
"coverage": "@test --coverage",
"coverage:clover": "@test --coverage-clover clover.xml",
"cs:check": "tools/php-cs-fixer fix -v --diff --dry-run",
"cs:fix": "tools/php-cs-fixer fix -v --diff",
"test": "pest"
},
"scripts-descriptions": {
"analytics": "Run static analysis tool",
"check": "Perform all tests and analysis, required before submitting a pull request",
"cs:check": "Run code style analysis, without fixing errors",
"cs:fix": "Run code style analysis and fix errors",
"coverage": "Show coverage report to the console",
"coverage:html": "Create a code coverage report in html format, into the `coverage/` directory",
"coverage:clover": "Create a code coverage report in xml format, into the `clover.xml` file",
"test": "Run the test suite"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}