-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 855 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 855 Bytes
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
{
"name": "levizwannah/php-markup",
"description": "Allows you to Write HTML using PHP in an elegant manner. And the result is a clean formatted html markup.",
"keywords": ["php to html", "php markup", "php", "html", "markup generation"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"LeviZwannah\\PhpMarkup\\": "src/"
}
},
"authors": [
{
"name": "Levi Kamara Zwannah",
"email": "levizwannah@gmail.com"
}
],
"require": {
"php": ">=8.0.0"
},
"homepage": "https://github.com/levizwannah/php-markup",
"support": {
"issues": "https://github.com/levizwannah/php-markup/issues",
"source": "https://github.com/levizwannah/php-markup"
},
"minimum-stability": "dev",
"prefer-stable": true
}