-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 956 Bytes
/
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
{
"name": "stefanwimmer128/html-builder",
"type": "library",
"description": "A fully extensible HTML-Builder supporting emmet input",
"homepage": "https://github.com/stefanwimmer128/html-builder",
"license": "ISC",
"authors": [
{
"name": "Stefan Wimmer",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": "^7.4",
"symfony/polyfill-php80": "^1.18",
"joshtronic/php-loremipsum": "^1.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9.4",
"symfony/var-dumper": "^5.1"
},
"autoload": {
"psr-4": {
"Stefanwimmer128\\HtmlBuilder\\": "Classes"
},
"files": [
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Stefanwimmer128\\HtmlBuilder\\Test\\": "Test"
}
},
"scripts": {
"test": "vendor/bin/phpunit Test"
}
}