Skip to content

Commit

Permalink
Merge pull request #4 from BenRutlandWeb/fix/composer
Browse files Browse the repository at this point in the history
removed version from composer.json
  • Loading branch information
BenRutlandWeb authored Feb 5, 2021
2 parents 6c37b0e + 5f2b048 commit e3c8e61
Showing 1 changed file with 28 additions and 29 deletions.
57 changes: 28 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
{
"name": "brw/wp-base-plugin",
"description": "A WordPress plugin boilerplate",
"type": "project",
"version": "1.1.2",
"license": "MIT",
"authors": [
{
"name": "Ben Rutland",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Plugin\\": "app/"
},
"files": [
"functions.php"
]
},
"require": {
"php": "^7.3",
"psr/container": "^1.0"
},
"scripts": {
"post-create-project-cmd": [
"npm install"
]
"name": "brw/wp-base-plugin",
"description": "A WordPress plugin boilerplate",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Ben Rutland",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Plugin\\": "app/"
},
"files": [
"functions.php"
]
},
"require": {
"php": "^7.3",
"psr/container": "^1.0"
},
"scripts": {
"post-create-project-cmd": [
"npm install"
]
}
}

0 comments on commit e3c8e61

Please sign in to comment.