Changeset 3452122
- Timestamp:
- 02/02/2026 01:33:20 PM (8 weeks ago)
- Location:
- ecomail
- Files:
-
- 10 edited
- 1 copied
-
tags/2.4.2 (copied) (copied from ecomail/trunk)
-
tags/2.4.2/ecomail.php (modified) (1 diff)
-
tags/2.4.2/readme.txt (modified) (1 diff)
-
tags/2.4.2/src/Models/WooOrderModel.php (modified) (2 diffs)
-
tags/2.4.2/vendor/composer/installed.php (modified) (2 diffs)
-
tags/2.4.2/vendor/ecomail/composer/installed.php (modified) (1 diff)
-
trunk/ecomail.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Models/WooOrderModel.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/vendor/ecomail/composer/installed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecomail/tags/2.4.2/ecomail.php
r3433536 r3452122 3 3 * Plugin Name: Ecomail 4 4 * Description: Official Ecomail integration for WordPress and WooCommerce 5 * Version: 2.4. 15 * Version: 2.4.2 6 6 * Requires PHP: 8.1.0 7 7 * Requires at least: 6.5 -
ecomail/tags/2.4.2/readme.txt
r3451983 r3452122 6 6 Tested up to: 6.8 7 7 Requires PHP: 8.1 8 Stable tag: 2.4. 18 Stable tag: 2.4.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
ecomail/tags/2.4.2/src/Models/WooOrderModel.php
r3378139 r3452122 78 78 'email' => $wc_order->get_billing_email(), 79 79 'shop' => site_url(), 80 'amount' => floatval( $wc_order->get_total() - $wc_order->get_total_tax()),80 'amount' => floatval( $wc_order->get_total() ), 81 81 'tax' => floatval( $wc_order->get_total_tax() ), 82 82 'shipping' => floatval( $wc_order->get_shipping_total() ), … … 96 96 } 97 97 98 $categor y = '';98 $categories = []; 99 99 $product_id = $product->get_parent_id() ?: $product->get_id(); 100 100 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 104 107 } 105 108 } 106 109 107 110 $data['transaction_items'][] = array( 108 'code' => $product->get_sku() ?? $product->get_id(),109 'title' => $product->get_name(),110 'categor y' => $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, 113 116 ); 114 117 } -
ecomail/tags/2.4.2/vendor/composer/installed.php
r3433536 r3452122 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'project', 18 18 'install_path' => __DIR__ . '/../../', -
ecomail/tags/2.4.2/vendor/ecomail/composer/installed.php
r3433536 r3452122 3 3 namespace EcomailDeps; 4 4 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)));5 return 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 3 3 * Plugin Name: Ecomail 4 4 * Description: Official Ecomail integration for WordPress and WooCommerce 5 * Version: 2.4. 15 * Version: 2.4.2 6 6 * Requires PHP: 8.1.0 7 7 * Requires at least: 6.5 -
ecomail/trunk/readme.txt
r3451983 r3452122 6 6 Tested up to: 6.8 7 7 Requires PHP: 8.1 8 Stable tag: 2.4. 18 Stable tag: 2.4.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
ecomail/trunk/src/Models/WooOrderModel.php
r3378139 r3452122 78 78 'email' => $wc_order->get_billing_email(), 79 79 'shop' => site_url(), 80 'amount' => floatval( $wc_order->get_total() - $wc_order->get_total_tax()),80 'amount' => floatval( $wc_order->get_total() ), 81 81 'tax' => floatval( $wc_order->get_total_tax() ), 82 82 'shipping' => floatval( $wc_order->get_shipping_total() ), … … 96 96 } 97 97 98 $categor y = '';98 $categories = []; 99 99 $product_id = $product->get_parent_id() ?: $product->get_id(); 100 100 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 104 107 } 105 108 } 106 109 107 110 $data['transaction_items'][] = array( 108 'code' => $product->get_sku() ?? $product->get_id(),109 'title' => $product->get_name(),110 'categor y' => $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, 113 116 ); 114 117 } -
ecomail/trunk/vendor/composer/installed.php
r3433536 r3452122 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'project', 18 18 'install_path' => __DIR__ . '/../../', -
ecomail/trunk/vendor/ecomail/composer/installed.php
r3433536 r3452122 3 3 namespace EcomailDeps; 4 4 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)));5 return 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.