An implementation of PSR-7 URI interface and the WHATWG URL specification
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

40 lines
963 B

{
"name": "mensbeam/url",
"type": "library",
"description": "An implementation of PSR-7 URI interface and the WHATWG URL specification",
"keywords": ["whatwg", "url", "psr7"],
"license": "MIT",
"authors": [
{
"name": "J. King",
"email": "jking@jkingweb.ca",
"homepage": "https://jkingweb.ca/"
}
],
"require": {
"php": "^7.1",
"psr/http-message": "^1.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"platform": {
"php": "7.1.33"
}
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
"autoload": {
"psr-4": {
"MensBeam\\Url\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"MensBeam\\Url\\TestCase\\": "tests/cases/"
}
}
}