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.
 
 
 

38 lines
893 B

{
"name": "mensbeam/docopt-ng",
"type": "library",
"description": "A PHP port of Docopt-ng",
"license": "MIT",
"authors": [
{
"name": "J. King",
"email": "jking@jkingweb.ca",
"homepage": "https://jkingweb.ca/"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "*"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
"autoload": {
"classmap": ["lib/Docopt.php"]
},
"autoload-dev": {
"psr-4": {
"MensBeam\\Docopt\\Test\\": "tests/lib/",
"MensBeam\\Docopt\\TestCase\\": "tests/cases/"
}
}
}