-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.18 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "shish/microhtml",
"type": "library",
"description": "A minimal HTML generating library",
"keywords": [
"generator",
"html"
],
"homepage": "https://github.com/shish/microhtml",
"license": "MIT",
"authors": [
{
"name": "Shish",
"email": "webmaster@shishnet.org",
"homepage": "http://shishnet.org",
"role": "Developer"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89",
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"files": [
"src/microhtml.php"
]
},
"scripts": {
"check": [
"@build",
"@format",
"@analyse",
"@test"
],
"stan": [
"@analyse"
],
"build": "php gen.php",
"format": "php-cs-fixer fix",
"analyse-ci": "phpstan analyse --error-format=github",
"analyse": "phpstan analyse --error-format=raw | sed -E 's/:([0-9]+):/:\\1 /'",
"test": "php -d xdebug.mode=coverage vendor/bin/phpunit"
}
}