Plugin Directory

Changeset 3452122


Ignore:
Timestamp:
02/02/2026 01:33:20 PM (8 weeks ago)
Author:
ecomailcz
Message:

Release version 2.4.2

Location:
ecomail
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ecomail/tags/2.4.2/ecomail.php

    r3433536 r3452122  
    33 * Plugin Name:          Ecomail
    44 * Description:          Official Ecomail integration for WordPress and WooCommerce
    5  * Version:              2.4.1
     5 * Version:              2.4.2
    66 * Requires PHP:         8.1.0
    77 * Requires at least:    6.5
  • ecomail/tags/2.4.2/readme.txt

    r3451983 r3452122  
    66Tested up to: 6.8
    77Requires PHP: 8.1
    8 Stable tag: 2.4.1
     8Stable tag: 2.4.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • ecomail/tags/2.4.2/src/Models/WooOrderModel.php

    r3378139 r3452122  
    7878                'email'     => $wc_order->get_billing_email(),
    7979                'shop'      => site_url(),
    80                 'amount'    => floatval( $wc_order->get_total() - $wc_order->get_total_tax() ),
     80                'amount'    => floatval( $wc_order->get_total() ),
    8181                'tax'       => floatval( $wc_order->get_total_tax() ),
    8282                'shipping'  => floatval( $wc_order->get_shipping_total() ),
     
    9696            }
    9797
    98             $category   = '';
     98            $categories = [];
    9999            $product_id = $product->get_parent_id() ?: $product->get_id();
    100100            if ( $product_id ) {
    101                 foreach ( wp_get_post_terms( $product_id, 'product_cat' ) as $term ) {
    102                     $category = $term->name;
    103                     break;
     101                $terms = wp_get_post_terms( $product_id, 'product_cat' );
     102                foreach ( $terms as $index => $term ) {
     103                    if ( $index >= 20 ) {
     104                        break; // Max 20 categories per item
     105                    }
     106                    $categories[] = mb_substr( $term->name, 0, 100 ); // Max 100 chars per category
    104107                }
    105108            }
    106109
    107110            $data['transaction_items'][] = array(
    108                 'code'     => $product->get_sku() ?? $product->get_id(),
    109                 'title'    => $product->get_name(),
    110                 'category' => $category,
    111                 'price'    => $item->get_unit_price_tax_included(),
    112                 'amount'   => $item->quantity,
     111                'code'       => $product->get_sku() ?? $product->get_id(),
     112                'title'      => $product->get_name(),
     113                'categories' => $categories,
     114                'price'      => $item->get_unit_price_tax_included() * $item->quantity,
     115                'amount'     => $item->quantity,
    113116            );
    114117        }
  • ecomail/tags/2.4.2/vendor/composer/installed.php

    r3433536 r3452122  
    22    'root' => array(
    33        'name' => 'ecomailcz/ecomail-woocommerce',
    4         'pretty_version' => '2.4.1',
    5         'version' => '2.4.1.0',
    6         'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04',
     4        'pretty_version' => '2.4.2',
     5        'version' => '2.4.2.0',
     6        'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'ecomailcz/ecomail-woocommerce' => array(
    14             'pretty_version' => '2.4.1',
    15             'version' => '2.4.1.0',
    16             'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04',
     14            'pretty_version' => '2.4.2',
     15            'version' => '2.4.2.0',
     16            'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
  • ecomail/tags/2.4.2/vendor/ecomail/composer/installed.php

    r3433536 r3452122  
    33namespace EcomailDeps;
    44
    5 return array('root' => array('name' => '__root__', 'pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'v1.2.8', 'version' => '1.2.8.0', 'reference' => 'e03e521f6b508fb184af95341aa0128ece1f1973', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.7', 'version' => '2.3.7.0', 'reference' => '3c1ddfdef181431fbc4be83378f6d036d59e81e1', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.4.0', 'version' => '6.4.0.0', 'reference' => 'ae0f1b3b03d8b29dff81747063cbfd6276246cc4', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/asset' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'faf957af650b441b49f03cb7ffa42abfe157b43b', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/asset', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '4.0.72', 'version' => '4.0.72.0', 'reference' => '38b9b070dfac830a082d4bc7819ae787bdc28cfd', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/log' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '0fa14928f8191357966b77214fae9b3dd8e2ae69', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/model' => array('pretty_version' => '4.1.27', 'version' => '4.1.27.0', 'reference' => 'e6c6a6421ade5498be4f5fd1580770bd8dbd2fd6', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/model', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/plugin-utils' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '0ace7f3a23bdfe3e2b2b05c72af79fa034c7e77a', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/plugin-utils', 'aliases' => array(), 'dev_requirement' => \false)));
     5return array('root' => array('name' => '__root__', 'pretty_version' => '2.4.2', 'version' => '2.4.2.0', 'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '2.4.2', 'version' => '2.4.2.0', 'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'v1.2.8', 'version' => '1.2.8.0', 'reference' => 'e03e521f6b508fb184af95341aa0128ece1f1973', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.7', 'version' => '2.3.7.0', 'reference' => '3c1ddfdef181431fbc4be83378f6d036d59e81e1', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.4.0', 'version' => '6.4.0.0', 'reference' => 'ae0f1b3b03d8b29dff81747063cbfd6276246cc4', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/asset' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'faf957af650b441b49f03cb7ffa42abfe157b43b', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/asset', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '4.0.72', 'version' => '4.0.72.0', 'reference' => '38b9b070dfac830a082d4bc7819ae787bdc28cfd', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/log' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '0fa14928f8191357966b77214fae9b3dd8e2ae69', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/model' => array('pretty_version' => '4.1.27', 'version' => '4.1.27.0', 'reference' => 'e6c6a6421ade5498be4f5fd1580770bd8dbd2fd6', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/model', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/plugin-utils' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '0ace7f3a23bdfe3e2b2b05c72af79fa034c7e77a', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/plugin-utils', 'aliases' => array(), 'dev_requirement' => \false)));
  • ecomail/trunk/ecomail.php

    r3433536 r3452122  
    33 * Plugin Name:          Ecomail
    44 * Description:          Official Ecomail integration for WordPress and WooCommerce
    5  * Version:              2.4.1
     5 * Version:              2.4.2
    66 * Requires PHP:         8.1.0
    77 * Requires at least:    6.5
  • ecomail/trunk/readme.txt

    r3451983 r3452122  
    66Tested up to: 6.8
    77Requires PHP: 8.1
    8 Stable tag: 2.4.1
     8Stable tag: 2.4.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • ecomail/trunk/src/Models/WooOrderModel.php

    r3378139 r3452122  
    7878                'email'     => $wc_order->get_billing_email(),
    7979                'shop'      => site_url(),
    80                 'amount'    => floatval( $wc_order->get_total() - $wc_order->get_total_tax() ),
     80                'amount'    => floatval( $wc_order->get_total() ),
    8181                'tax'       => floatval( $wc_order->get_total_tax() ),
    8282                'shipping'  => floatval( $wc_order->get_shipping_total() ),
     
    9696            }
    9797
    98             $category   = '';
     98            $categories = [];
    9999            $product_id = $product->get_parent_id() ?: $product->get_id();
    100100            if ( $product_id ) {
    101                 foreach ( wp_get_post_terms( $product_id, 'product_cat' ) as $term ) {
    102                     $category = $term->name;
    103                     break;
     101                $terms = wp_get_post_terms( $product_id, 'product_cat' );
     102                foreach ( $terms as $index => $term ) {
     103                    if ( $index >= 20 ) {
     104                        break; // Max 20 categories per item
     105                    }
     106                    $categories[] = mb_substr( $term->name, 0, 100 ); // Max 100 chars per category
    104107                }
    105108            }
    106109
    107110            $data['transaction_items'][] = array(
    108                 'code'     => $product->get_sku() ?? $product->get_id(),
    109                 'title'    => $product->get_name(),
    110                 'category' => $category,
    111                 'price'    => $item->get_unit_price_tax_included(),
    112                 'amount'   => $item->quantity,
     111                'code'       => $product->get_sku() ?? $product->get_id(),
     112                'title'      => $product->get_name(),
     113                'categories' => $categories,
     114                'price'      => $item->get_unit_price_tax_included() * $item->quantity,
     115                'amount'     => $item->quantity,
    113116            );
    114117        }
  • ecomail/trunk/vendor/composer/installed.php

    r3433536 r3452122  
    22    'root' => array(
    33        'name' => 'ecomailcz/ecomail-woocommerce',
    4         'pretty_version' => '2.4.1',
    5         'version' => '2.4.1.0',
    6         'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04',
     4        'pretty_version' => '2.4.2',
     5        'version' => '2.4.2.0',
     6        'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'ecomailcz/ecomail-woocommerce' => array(
    14             'pretty_version' => '2.4.1',
    15             'version' => '2.4.1.0',
    16             'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04',
     14            'pretty_version' => '2.4.2',
     15            'version' => '2.4.2.0',
     16            'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
  • ecomail/trunk/vendor/ecomail/composer/installed.php

    r3433536 r3452122  
    33namespace EcomailDeps;
    44
    5 return array('root' => array('name' => '__root__', 'pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '34546515a25e7c9ab468ced460421eb3ad7dcf04', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'v1.2.8', 'version' => '1.2.8.0', 'reference' => 'e03e521f6b508fb184af95341aa0128ece1f1973', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.7', 'version' => '2.3.7.0', 'reference' => '3c1ddfdef181431fbc4be83378f6d036d59e81e1', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.4.0', 'version' => '6.4.0.0', 'reference' => 'ae0f1b3b03d8b29dff81747063cbfd6276246cc4', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/asset' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'faf957af650b441b49f03cb7ffa42abfe157b43b', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/asset', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '4.0.72', 'version' => '4.0.72.0', 'reference' => '38b9b070dfac830a082d4bc7819ae787bdc28cfd', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/log' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '0fa14928f8191357966b77214fae9b3dd8e2ae69', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/model' => array('pretty_version' => '4.1.27', 'version' => '4.1.27.0', 'reference' => 'e6c6a6421ade5498be4f5fd1580770bd8dbd2fd6', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/model', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/plugin-utils' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '0ace7f3a23bdfe3e2b2b05c72af79fa034c7e77a', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/plugin-utils', 'aliases' => array(), 'dev_requirement' => \false)));
     5return array('root' => array('name' => '__root__', 'pretty_version' => '2.4.2', 'version' => '2.4.2.0', 'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '2.4.2', 'version' => '2.4.2.0', 'reference' => '1b21cbcab81646d4db1b8a963bae285040d88d28', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'v1.2.8', 'version' => '1.2.8.0', 'reference' => 'e03e521f6b508fb184af95341aa0128ece1f1973', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.7', 'version' => '2.3.7.0', 'reference' => '3c1ddfdef181431fbc4be83378f6d036d59e81e1', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.4.0', 'version' => '6.4.0.0', 'reference' => 'ae0f1b3b03d8b29dff81747063cbfd6276246cc4', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/asset' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'faf957af650b441b49f03cb7ffa42abfe157b43b', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/asset', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '4.0.72', 'version' => '4.0.72.0', 'reference' => '38b9b070dfac830a082d4bc7819ae787bdc28cfd', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/log' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '0fa14928f8191357966b77214fae9b3dd8e2ae69', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/log', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/model' => array('pretty_version' => '4.1.27', 'version' => '4.1.27.0', 'reference' => 'e6c6a6421ade5498be4f5fd1580770bd8dbd2fd6', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/model', 'aliases' => array(), 'dev_requirement' => \false), 'wpify/plugin-utils' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '0ace7f3a23bdfe3e2b2b05c72af79fa034c7e77a', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/plugin-utils', 'aliases' => array(), 'dev_requirement' => \false)));
Note: See TracChangeset for help on using the changeset viewer.