Browse Source

Renomeia pacote

master 1.1.0
Guilherme Capanema 5 years ago
parent
commit
19893a1252
2 changed files with 34 additions and 4 deletions
  1. +30
    -0
      composer.json
  2. +4
    -4
      wc-fvc.php

+ 30
- 0
composer.json View File

@ -0,0 +1,30 @@
{
"name": "horizontes/wc-fvc",
"type": "wordpress-plugin",
"description": "Adiciona cálculo de frete à página de produto do WooCommerce.",
"keywords": [
"plugin",
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Guilherme Capanema",
"email": "guilherme@horizontes.info"
}
],
"require": {
"php": "^7.2",
"ramsey/uuid": "^3.8"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

+ 4
- 4
wc-fvc.php View File

@ -14,9 +14,9 @@
* *
* @wordpress-plugin * @wordpress-plugin
* Plugin Name: WooCommerce Frete via CEP * Plugin Name: WooCommerce Frete via CEP
* Plugin URI: https://horizontes.info/plugins/wcfvc
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
* Version: 1.0.0
* Plugin URI: https://horizontes.info
* Description: Adiciona cálculo de frete à página de produto do WooCommerce.
* Version: 1.1.0
* Author: Horizontes Coop. * Author: Horizontes Coop.
* Author URI: https://horizontes.info * Author URI: https://horizontes.info
* License: GPL-2.0+ * License: GPL-2.0+
@ -35,7 +35,7 @@ if ( ! defined( 'WPINC' ) ) {
* Start at version 1.0.0 and use SemVer - https://semver.org * Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions. * Rename this for your plugin and update it as you release new versions.
*/ */
define( 'WC_FVC_VERSION', '1.0.0' );
define( 'WC_FVC_VERSION', '1.1.0' );
/** /**
* The code that runs during plugin activation. * The code that runs during plugin activation.


Loading…
Cancel
Save