html-object-strings/composer.json
2018-08-23 21:54:45 -06:00

34 lines
762 B
JSON

{
"name": "byjoby/html-object-strings",
"description": "Abstraction layer for constructing arbitrary HTML tags in PHP",
"type": "library",
"require": {
"php": ">=7.1"
},
"license": "MIT",
"authors": [{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"HtmlObjectStrings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HtmlObjectStrings\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit"
]
},
"require-dev": {
"phpunit/phpunit": "^7",
"stevegrunwell/phpunit-markup-assertions": "^1.2"
}
}