diff --git a/composer.json b/composer.json index 0ec862b..caec083 100644 --- a/composer.json +++ b/composer.json @@ -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": "info@benrutlandweb.co.uk" - } - ], - "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": "info@benrutlandweb.co.uk" } + ], + "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" + ] + } }