-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.08 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
43
44
45
{
"name": "hisan/htmlbuilder",
"description": "Lightweight HTML Builder for PHP",
"version": "0.1.1-dev",
"type": "library",
"license": "MIT",
"keywords": ["xml", "html", "html5", "dom", "dom-builder", "html-builder"],
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Hiago dos Santos",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"files": [
"src/HTML/helpers.php",
"src/Support/helpers.php"
],
"psr-4": {
"HTMLBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HTMLBuilder\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0"
},
"support": {
"issues": "https://github.com/hisan92/htmlbuilder/issues"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.5"
}
}