This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/consolidation/self-update/composer.json
2018-11-23 12:29:20 +00:00

44 lines
969 B
JSON

{
"name": "consolidation/self-update",
"description": "Provides a self:update command for Symfony Console applications.",
"license": "MIT",
"authors": [
{
"name": "Alexander Menk",
"email": "menk@mestrona.net"
},
{
"name": "Greg Anderson",
"email": "greg.1.anderson@greenknowe.org"
}
],
"autoload":{
"psr-4":{
"SelfUpdate\\":"src"
}
},
"require": {
"php": ">=5.5.0",
"symfony/console": "^2.8|^3|^4",
"symfony/filesystem": "^2.5|^3|^4"
},
"bin": [
"scripts/release"
],
"scripts": {
"release": "./scripts/release VERSION"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.6.3"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}