forked from soundasleep/html2text
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.16 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
{
"name": "worksome/html2text",
"description": "A PHP script to convert HTML into a plain text format",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Worksome\\Html2Text\\": "src/"
}
},
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/polyfill-mbstring": "^1.27"
},
"require-dev": {
"pestphp/pest": "^2.0",
"worksome/coding-style": "^2.5"
},
"scripts": {
"lint": "vendor/bin/ecs --fix --ansi",
"test:unit": "vendor/bin/pest -p --colors=always",
"test:coverage": "vendor/bin/pest -p --coverage --colors=always",
"test:types": "vendor/bin/phpstan analyse --ansi",
"test:style": "vendor/bin/ecs --ansi",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
}
}