Skip to content

Commit

Permalink
Merge pull request #8 from g-scalvini/composer-update
Browse files Browse the repository at this point in the history
Set PHP min version to 5.2 and re-order composer.json params
  • Loading branch information
bolknote authored Sep 22, 2023
2 parents b01acaf + 1294493 commit b9e62d3
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
{
"name": "pear/html_safe",
"description": "HTML_Safe - Parser that strips down all potentially dangerous content within HTML. More info available on: https://pear.php.net/package/HTML_Safe",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"email": "demrit@php.net",
"name": "Miguel Vazquez Gocobachi",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"HTML": "./"
}
},
"description": "More info available on: http://pear.php.net/package/HTML_Safe",
"include-path": [
"./"
],
"license": "BSD-3-Clause",
"name": "pear/html_safe",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTML_Safe",
"issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTML_Safe",
"source": "https://github.com/pear/HTML_Safe"
},
"type": "library",
"require": {
"php": ">=5.2",
"pear/pear_exception": "*",
"pear/xml_htmlsax3": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
},
"autoload": {
"psr-0": {
"HTML": "./"
}
},
"include-path": [
"./"
]
}

0 comments on commit b9e62d3

Please sign in to comment.