Skip to content

Commit

Permalink
Updating composer to allow local install via wp-cli
Browse files Browse the repository at this point in the history
This change allows me to install this package via wp package install local version.
  • Loading branch information
renatonascalves committed Nov 8, 2017
1 parent 77cddd5 commit 97d180f
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "buddypress/wp-cli-buddypress",
"type": "wp-cli-package",
"description": "WP-CLI commands for BuddyPress",
"keywords": ["wp-cli", "buddypress", "community", "wordpress", "bp"],
"keywords": [ "wp-cli", "buddypress", "community", "wordpress", "bp" ],
"homepage": "https://github.com/buddypress/wp-cli-buddypress",
"license": "MIT",
"authors": [
Expand All @@ -15,14 +15,25 @@
"issues": "https://github.com/buddypress/wp-cli-buddypress/issues",
"source": "https://github.com/buddypress/wp-cli-buddypress"
},
"autoload": {
"files": [ "wp-cli-bp.php" ]
},
"require": {
"php": ">=5.3",
"wp-cli/wp-cli": ">=0.23.0"
},
"require-dev": {
"behat/behat": "~2.5"
}
}
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [ "wp-cli-bbp.php" ]
},
"require": {
"php": ">=5.3",
"wp-cli/wp-cli": ">=0.23.0"
},
"require-dev": {
"behat/behat": "~2.5"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"bundled": true,
"commands": [
"bp"
]
}
}

0 comments on commit 97d180f

Please sign in to comment.