Plugin Directory

Changeset 2997848

Timestamp:
11/17/2023 06:26:50 PM (8 months ago)
Author:
Barn2Media
Message:

Update to version 1.1.7 from GitHub

Location:
easy-post-types-fields
Files:
212 added
10 deleted
56 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-post-types-fields/tags/1.1.7/changelog.txt

    r2962617 r2997848  
     1
     2
     3
     4
     5
     6
    17= 1.1.6 =
    28 * Fix: Custom field's value con not be deleted
  • easy-post-types-fields/tags/1.1.7/composer.json

    r2768423 r2997848  
    1919        {
    2020            "type": "vcs",
     21
     22
     23
     24
    2125            "url": "git@bitbucket.org:barn2plugins/setup-wizard.git"
     26
     27
     28
     29
    2230        }
    2331    ],
     
    2533        "barn2/php-standards": "dev-master",
    2634        "bamarni/composer-bin-plugin": "^1.4",
    27         "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
    2835        "pronamic/wp-documentor": "^1.2",
    29         "humbug/php-scoper": "^0.17.5",
    30         "barn2/setup-wizard": "^0.5.0"
     36        "humbug/php-scoper": "0.18.0",
     37        "barn2/setup-wizard": "0.5.0",
     38        "barn2/barn2-lib": "^1.1",
     39        "barn2/php-scoper-excludes": "^0.2.0",
     40        "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
    3141    },
    3242    "scripts": {
     
    3545            "composer bin php-scoper config minimum-stability dev",
    3646            "composer bin php-scoper config prefer-stable true",
    37             "composer bin php-scoper require --dev humbug/php-scoper"
     47            "composer bin php-scoper require --dev humbug/php-scoper"
    3848        ],
    3949        "scoper": "php-scoper add-prefix --config .scoper.inc.php --output-dir dependencies/"
     
    4151    "autoload": {
    4252        "psr-4": {
    43             "Barn2\\Plugin\\Easy_Post_Types_Fields\\": "src",
    44             "Barn2\\EPT_Lib\\": "lib"
     53            "Barn2\\Plugin\\Easy_Post_Types_Fields\\": "src"
    4554        },
    4655        "classmap": [
    47             "dependencies/src"
     56            "dependencies"
    4857        ]
    4958    },
  • easy-post-types-fields/tags/1.1.7/easy-post-types-fields.php

    r2962617 r2997848  
    1212 * Plugin URI:      https://wordpress.org/plugins/easy-post-types-fields/
    1313 * Description:     Create custom post types, fields and taxonomies.
    14  * Version:         1.1.6
     14 * Version:         1.1.
    1515 * Author:          Barn2 Plugins
    1616 * Author URI:      https://barn2.com
     
    3030}
    3131
    32 const PLUGIN_VERSION = '1.1.6';
     32const PLUGIN_VERSION = '1.1.';
    3333const PLUGIN_FILE    = __FILE__;
    3434
  • easy-post-types-fields/tags/1.1.7/readme.txt

    r2962617 r2997848  
    33Contributors: barn2media
    44Tags: custom post type, custom field, custom taxonomy, custom post types, custom fields, taxonomy, custom taxonomies, content type, post type, custom data, meta fields
    5 Requires at least: 5.0
    6 Tested up to: 6.3
    7 Requires PHP: 7.2
    8 Stable tag: 1.1.6
     5Requires at least: .0
     6Tested up to: 6.
     7Requires PHP: 7.
     8Stable tag: 1.1.
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    12812813. Recommended: Restrict access to your custom posts with the Password Protected Categories plugin.
    129129
    130 == Upgrade Notice ==
    131 
    132 = 1.0.0 =
    133 This is the initial release
    134 
    135130== Changelog ==
    136131
    137 = 1.1.6 =
    138  * Fix: Custom field's value can not be deleted
     132= 1.1.7 =
     133 * Fix: Fatal error when deleting the plugin
     134 * Dev: Updated internal libraries and classes
     135 * Dev: Modified the taxonomy column in different post types
     136 * Dev: Tested up to WordPress 6.4
    139137
    140138See changelog.txt for more details.
  • easy-post-types-fields/tags/1.1.7/src/Admin/Admin_Controller.php

    r2909586 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin;
    44
    5 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    6     Barn2\EPT_Lib\Registerable,
    7     Barn2\EPT_Lib\Service,
    8     Barn2\EPT_Lib\Service_Container,
     5use Barn2\Lib\Plugin\Simple_Plugin,
     6    Barn2\Lib\Registerable,
     7    Barn2\Lib\Service,
     8    Barn2\Lib\Service_Container,
    99    Barn2\Plugin\Easy_Post_Types_Fields\Util;
    1010
     
    3636    public function __construct( Simple_Plugin $plugin ) {
    3737        $this->plugin = $plugin;
     38
     39
    3840    }
    3941
     
    4143     * {@inheritdoc}
    4244     */
    43     public function get_services() {
    44         $services = [
    45             'cpt_editor'    => new CPT_Editor( $this->plugin ),
    46             'review_notice' => new Review_Notice( $this->plugin ),
    47             'wizard'        => new Wizard\Setup_Wizard( $this->plugin ),
    48         ];
    49 
    50         return $services;
     45    public function add_services() {
     46        $this->add_service( 'cpt_editor', new CPT_Editor( $this->plugin ) );
     47        $this->add_service( 'review_notice', new Review_Notice( $this->plugin ) );
     48        $this->add_service( 'wizard', new Wizard\Setup_Wizard( $this->plugin ) );
     49        $this->add_service( 'taxonomy_columns', new Taxonomy_Columns() );
    5150    }
    5251
  • easy-post-types-fields/tags/1.1.7/src/Admin/CPT_Editor.php

    r2909586 r2997848  
    1717use Barn2\Plugin\Easy_Post_Types_Fields\Plugin,
    1818    Barn2\Plugin\Easy_Post_Types_Fields\Util,
    19     Barn2\EPT_Lib\Plugin\Simple_Plugin,
    20     Barn2\EPT_Lib\Registerable,
    21     Barn2\EPT_Lib\Service,
    22     Barn2\EPT_Lib\Util as Lib_Util;
     19    Barn2\Lib\Plugin\Simple_Plugin,
     20    Barn2\Lib\Registerable,
     21    Barn2\Lib\Service,
     22    Barn2\Lib\Util as Lib_Util;
    2323
    2424use WP_Error;
  • easy-post-types-fields/tags/1.1.7/src/Admin/List_Tables/Post_Type_List_Table.php

    r2893808 r2997848  
    3232     */
    3333    protected $post_types;
     34
     35
     36
     37
     38
     39
     40
     41
     42
    3443
    3544    /**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Plugin_Setup.php

    r2909586 r2997848  
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Starter;
    1414use Barn2\Plugin\Easy_Post_Types_Fields\Plugin;
    15 use Barn2\EPT_Lib\Registerable;
     15use Barn2\Lib\Registerable;
    1616
    1717/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Review_Notice.php

    r2768423 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin;
    44
    5 use Barn2\EPT_Lib\Registerable,
    6     Barn2\EPT_Lib\Service;
     5use Barn2\Lib\Registerable,
     6    Barn2\Lib\Service;
    77
    88defined( 'ABSPATH' ) || exit;
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Setup_Wizard.php

    r2909586 r2997848  
    1212
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Util;
    14 use Barn2\EPT_Lib\Plugin\Simple_Plugin;
    15 use Barn2\EPT_Lib\Registerable;
    16 use Barn2\EPT_Lib\Util as Lib_Util;
     14use Barn2\Lib\Plugin\Simple_Plugin;
     15use Barn2\Lib\Registerable;
     16use Barn2\Lib\Util as Lib_Util;
    1717
    1818/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Starter.php

    r2847645 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Starter as Setup_Wizard_Starter;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Starter as Setup_Wizard_Starter;
    1414
    1515/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/Completed.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Ready;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Ready;
    1414
    1515/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/EPT_Features.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
    1414use Barn2\Plugin\Easy_Post_Types_Fields\Util;
    1515
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/EPT_Name.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
    1414
    1515/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/EPT_Ready.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Ready;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Ready;
    1414
    1515/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/Upsell.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
    14 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Util;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
     14use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Util;
    1515
    1616/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Steps/Welcome.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Welcome_Free;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Welcome_Free;
    1414
    1515/**
  • easy-post-types-fields/tags/1.1.7/src/Admin/Wizard/Wizard.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Interfaces\Restartable;
    14 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Setup_Wizard;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Interfaces\Restartable;
     14use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Setup_Wizard;
    1515
    1616/**
     
    6363        wp_enqueue_script( "{$slug}-library", $this->get_non_wc_asset(), $this->get_non_wc_dependencies(), $this->get_non_wc_version(), true );
    6464
    65         wp_enqueue_style( "{$slug}-components", $this->get_library_url() . 'resources/wc-vendor/components.css', false, $this->get_non_wc_version() );
     65        wp_enqueue_style( ".css', false, $this->get_non_wc_version() );
    6666        wp_enqueue_style( $slug, $this->get_library_url() . 'build/main.css', $styling_dependencies, filemtime( $this->get_library_path() . '/build/main.css' ) );
    6767    }
  • easy-post-types-fields/tags/1.1.7/src/Integration/Barn2_Table_Plugin.php

    r2777168 r2997848  
    1212
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Util,
    14     Barn2\EPT_Lib\Registerable,
    15     Barn2\EPT_Lib\Service;
     14    Barn2\Lib\Registerable,
     15    Barn2\Lib\Service;
    1616
    1717/**
  • easy-post-types-fields/tags/1.1.7/src/Plugin.php

    r2768423 r2997848  
    22namespace Barn2\Plugin\Easy_Post_Types_Fields;
    33
    4 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    5     Barn2\EPT_Lib\Registerable,
    6     Barn2\EPT_Lib\Translatable,
    7     Barn2\EPT_Lib\Util as Lib_Util;
     4use Barn2\Lib\Plugin\Simple_Plugin,
     5    Barn2\Lib\Registerable,
     6    Barn2\Lib\Translatable,
     7    Barn2\Lib\Util as Lib_Util;
    88
    99/**
     
    4141        );
    4242
    43         $this->services = [];
     43        $this->;
    4444
    45         if ( Lib_Util::is_admin() ) {
    46             $this->services['admin/controller'] = new Admin\Admin_Controller( $this );
    47         }
    48 
    49         $this->services = array_merge(
    50             $this->services,
    51             [
    52                 'post_type_factory' => new Post_Type_Factory( $this ),
    53                 'ptp_integration'   => new Integration\Barn2_Table_Plugin(),
    54             ]
    55         );
    5645    }
    5746
     
    6049     */
    6150    public function register() {
    62         $plugin_setup = new Admin\Plugin_Setup( $this->get_file(), $this );
    63         $plugin_setup->register();
     51        parent::register();
    6452
    65         add_action( 'init', [ $this, 'load_plugin' ] );
     53        add_action( 'plugins_loaded', [ $this, 'add_services' ] );
     54
     55        add_action( 'init', [ $this, 'register_services' ] );
    6656        add_action( 'init', [ $this, 'load_textdomain' ], 5 );
    6757    }
    6858
    69     /**
    70      * {@inheritdoc}
    71      */
    72     public function load_plugin() {
    73         Lib_Util::register_services( $this->services );
     59    public function add_services() {
     60        if ( Lib_Util::is_admin() ) {
     61            $this->add_service( 'admin/controller', new Admin\Admin_Controller( $this ) );
     62        }
     63
     64        $this->add_service( 'post_type_factory', new Post_Type_Factory( $this ) );
     65        $this->add_service( 'ptp_integration', new Integration\Barn2_Table_Plugin() );
    7466    }
    7567
  • easy-post-types-fields/tags/1.1.7/src/Post_Type_Factory.php

    r2719927 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields;
    44
    5 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    6     Barn2\EPT_Lib\Registerable,
    7     Barn2\EPT_Lib\Service;
     5use Barn2\Lib\Plugin\Simple_Plugin,
     6    Barn2\Lib\Registerable,
     7    Barn2\Lib\Service;
    88
    99use WP_Query;
  • easy-post-types-fields/tags/1.1.7/src/Util.php

    r2719927 r2997848  
    22namespace Barn2\Plugin\Easy_Post_Types_Fields;
    33
    4 use Barn2\EPT_Lib\Util as Lib_Util;
     4use Barn2\Lib\Util as Lib_Util;
    55
    66use WP_Query;
  • easy-post-types-fields/tags/1.1.7/vendor/composer/autoload_classmap.php

    r2909970 r2997848  
    77
    88return array(
    9     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Bootable' => $baseDir . '/dependencies/src/Interfaces/Bootable.php',
    10     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Pluggable' => $baseDir . '/dependencies/src/Interfaces/Pluggable.php',
    11     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Restartable' => $baseDir . '/dependencies/src/Interfaces/Restartable.php',
    12     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Setup_Wizard' => $baseDir . '/dependencies/src/Setup_Wizard.php',
    13     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Starter' => $baseDir . '/dependencies/src/Starter.php',
    14     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Step' => $baseDir . '/dependencies/src/Step.php',
    15     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Cross_Selling' => $baseDir . '/dependencies/src/Steps/Cross_Selling.php',
    16     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Ready' => $baseDir . '/dependencies/src/Steps/Ready.php',
    17     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome' => $baseDir . '/dependencies/src/Steps/Welcome.php',
    18     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome_Free' => $baseDir . '/dependencies/src/Steps/Welcome_Free.php',
    19     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Util' => $baseDir . '/dependencies/src/Util.php',
     9    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Abstract_Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Abstract_Plugin_Promo.php',
     10    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Notices' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Notices.php',
     11    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Plugin_Promo.php',
     12    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_API_Helper' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_API_Helper.php',
     13    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Scripts' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Scripts.php',
     14    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Util.php',
     15    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\CSS_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/CSS_Util.php',
     16    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Cache' => $baseDir . '/dependencies/barn2/barn2-lib/src/Cache.php',
     17    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Conditional' => $baseDir . '/dependencies/barn2/barn2-lib/src/Conditional.php',
     18    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Admin_Links' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Admin_Links.php',
     19    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Plugin_Updater' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Plugin_Updater.php',
     20    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Key_Setting' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Key_Setting.php',
     21    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Notices' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Notices.php',
     22    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Setting' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Setting.php',
     23    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\EDD_Licensing' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/EDD_Licensing.php',
     24    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License.php',
     25    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_API' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_API.php',
     26    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Checker' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Checker.php',
     27    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Summary' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Summary.php',
     28    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Plugin_License' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Plugin_License.php',
     29    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Licensed_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Licensed_Plugin.php',
     30    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin.php',
     31    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin_Activation_Listener' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin_Activation_Listener.php',
     32    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Premium_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Premium_Plugin.php',
     33    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Simple_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Simple_Plugin.php',
     34    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Registerable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Registerable.php',
     35    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Route' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Base_Route.php',
     36    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Server' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Base_Server.php',
     37    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Rest_Server' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Rest_Server.php',
     38    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Route' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Route.php',
     39    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Schedulable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Schedulable.php',
     40    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Scheduled_Task' => $baseDir . '/dependencies/barn2/barn2-lib/src/Scheduled_Task.php',
     41    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service.php',
     42    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Container' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service_Container.php',
     43    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Provider' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service_Provider.php',
     44    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Template_Loader' => $baseDir . '/dependencies/barn2/barn2-lib/src/Template_Loader.php',
     45    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Traits\\Check_WP_Requirements' => $baseDir . '/dependencies/barn2/barn2-lib/src/Traits/Check_WP_Requirements.php',
     46    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Translatable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Translatable.php',
     47    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/Util.php',
     48    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WP_Scoped_Hooks' => $baseDir . '/dependencies/barn2/barn2-lib/src/WP_Scoped_Hooks.php',
     49    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Custom_Settings_Fields' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Custom_Settings_Fields.php',
     50    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Navigation' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Navigation.php',
     51    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Plugin_Promo.php',
     52    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Settings_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Settings_Util.php',
     53    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Templates' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Templates.php',
     54    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Bootable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Bootable.php',
     55    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Pluggable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Pluggable.php',
     56    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Restartable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Restartable.php',
     57    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Setup_Wizard' => $baseDir . '/dependencies/barn2/setup-wizard/src/Setup_Wizard.php',
     58    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Starter' => $baseDir . '/dependencies/barn2/setup-wizard/src/Starter.php',
     59    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Step' => $baseDir . '/dependencies/barn2/setup-wizard/src/Step.php',
     60    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Cross_Selling' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Cross_Selling.php',
     61    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Ready' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Ready.php',
     62    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Welcome.php',
     63    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome_Free' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Welcome_Free.php',
     64    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Util' => $baseDir . '/dependencies/barn2/setup-wizard/src/Util.php',
     65    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Dismiss' => $baseDir . '/dependencies/wptrt/admin-notices/src/Dismiss.php',
     66    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notice' => $baseDir . '/dependencies/wptrt/admin-notices/src/Notice.php',
     67    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notices' => $baseDir . '/dependencies/wptrt/admin-notices/src/Notices.php',
    2068    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    2169);
  • easy-post-types-fields/tags/1.1.7/vendor/composer/autoload_psr4.php

    r2909970 r2997848  
    88return array(
    99    'Barn2\\Plugin\\Easy_Post_Types_Fields\\' => array($baseDir . '/src'),
    10     'Barn2\\EPT_Lib\\' => array($baseDir . '/lib'),
    1110);
  • easy-post-types-fields/tags/1.1.7/vendor/composer/autoload_static.php

    r2909970 r2997848  
    1111        array (
    1212            'Barn2\\Plugin\\Easy_Post_Types_Fields\\' => 36,
    13             'Barn2\\EPT_Lib\\' => 14,
    1413        ),
    1514    );
     
    2019            0 => __DIR__ . '/../..' . '/src',
    2120        ),
    22         'Barn2\\EPT_Lib\\' =>
    23         array (
    24             0 => __DIR__ . '/../..' . '/lib',
    25         ),
    2621    );
    2722
    2823    public static $classMap = array (
    29         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Bootable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Bootable.php',
    30         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Pluggable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Pluggable.php',
    31         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Restartable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Restartable.php',
    32         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Setup_Wizard' => __DIR__ . '/../..' . '/dependencies/src/Setup_Wizard.php',
    33         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Starter' => __DIR__ . '/../..' . '/dependencies/src/Starter.php',
    34         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Step' => __DIR__ . '/../..' . '/dependencies/src/Step.php',
    35         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Cross_Selling' => __DIR__ . '/../..' . '/dependencies/src/Steps/Cross_Selling.php',
    36         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Ready' => __DIR__ . '/../..' . '/dependencies/src/Steps/Ready.php',
    37         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome' => __DIR__ . '/../..' . '/dependencies/src/Steps/Welcome.php',
    38         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome_Free' => __DIR__ . '/../..' . '/dependencies/src/Steps/Welcome_Free.php',
    39         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Util' => __DIR__ . '/../..' . '/dependencies/src/Util.php',
     24        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Abstract_Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Abstract_Plugin_Promo.php',
     25        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Notices' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Notices.php',
     26        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Plugin_Promo.php',
     27        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_API_Helper' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_API_Helper.php',
     28        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Scripts' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Scripts.php',
     29        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Util.php',
     30        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\CSS_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/CSS_Util.php',
     31        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Cache' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Cache.php',
     32        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Conditional' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Conditional.php',
     33        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Admin_Links' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Admin_Links.php',
     34        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Plugin_Updater' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Plugin_Updater.php',
     35        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Key_Setting' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Key_Setting.php',
     36        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Notices' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Notices.php',
     37        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Setting' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Setting.php',
     38        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\EDD_Licensing' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/EDD_Licensing.php',
     39        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License.php',
     40        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_API' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_API.php',
     41        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Checker' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Checker.php',
     42        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Summary' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Summary.php',
     43        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Plugin_License' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Plugin_License.php',
     44        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Licensed_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Licensed_Plugin.php',
     45        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin.php',
     46        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin_Activation_Listener' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin_Activation_Listener.php',
     47        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Premium_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Premium_Plugin.php',
     48        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Simple_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Simple_Plugin.php',
     49        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Registerable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Registerable.php',
     50        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Route' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Base_Route.php',
     51        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Server' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Base_Server.php',
     52        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Rest_Server' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Rest_Server.php',
     53        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Route' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Route.php',
     54        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Schedulable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Schedulable.php',
     55        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Scheduled_Task' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Scheduled_Task.php',
     56        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service.php',
     57        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Container' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service_Container.php',
     58        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Provider' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service_Provider.php',
     59        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Template_Loader' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Template_Loader.php',
     60        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Traits\\Check_WP_Requirements' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Traits/Check_WP_Requirements.php',
     61        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Translatable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Translatable.php',
     62        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Util.php',
     63        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WP_Scoped_Hooks' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WP_Scoped_Hooks.php',
     64        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Custom_Settings_Fields' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Custom_Settings_Fields.php',
     65        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Navigation' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Navigation.php',
     66        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Plugin_Promo.php',
     67        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Settings_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Settings_Util.php',
     68        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Templates' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Templates.php',
     69        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Bootable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Bootable.php',
     70        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Pluggable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Pluggable.php',
     71        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Restartable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Restartable.php',
     72        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Setup_Wizard' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Setup_Wizard.php',
     73        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Starter' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Starter.php',
     74        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Step' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Step.php',
     75        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Cross_Selling' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Cross_Selling.php',
     76        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Ready' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Ready.php',
     77        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Welcome.php',
     78        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome_Free' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Welcome_Free.php',
     79        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Util' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Util.php',
     80        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Dismiss' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Dismiss.php',
     81        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notice' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Notice.php',
     82        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notices' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Notices.php',
    4083        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    4184    );
  • easy-post-types-fields/tags/1.1.7/vendor/composer/installed.php

    r2962617 r2997848  
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e',
     8        'reference' => '',
    99        'name' => 'barn2/easy-post-types-fields',
    1010        'dev' => false,
     
    1717            'install_path' => __DIR__ . '/../../',
    1818            'aliases' => array(),
    19             'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e',
     19            'reference' => '',
    2020            'dev_requirement' => false,
    2121        ),
  • easy-post-types-fields/trunk/changelog.txt

    r2962617 r2997848  
     1
     2
     3
     4
     5
     6
    17= 1.1.6 =
    28 * Fix: Custom field's value con not be deleted
  • easy-post-types-fields/trunk/composer.json

    r2768423 r2997848  
    1919        {
    2020            "type": "vcs",
     21
     22
     23
     24
    2125            "url": "git@bitbucket.org:barn2plugins/setup-wizard.git"
     26
     27
     28
     29
    2230        }
    2331    ],
     
    2533        "barn2/php-standards": "dev-master",
    2634        "bamarni/composer-bin-plugin": "^1.4",
    27         "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
    2835        "pronamic/wp-documentor": "^1.2",
    29         "humbug/php-scoper": "^0.17.5",
    30         "barn2/setup-wizard": "^0.5.0"
     36        "humbug/php-scoper": "0.18.0",
     37        "barn2/setup-wizard": "0.5.0",
     38        "barn2/barn2-lib": "^1.1",
     39        "barn2/php-scoper-excludes": "^0.2.0",
     40        "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
    3141    },
    3242    "scripts": {
     
    3545            "composer bin php-scoper config minimum-stability dev",
    3646            "composer bin php-scoper config prefer-stable true",
    37             "composer bin php-scoper require --dev humbug/php-scoper"
     47            "composer bin php-scoper require --dev humbug/php-scoper"
    3848        ],
    3949        "scoper": "php-scoper add-prefix --config .scoper.inc.php --output-dir dependencies/"
     
    4151    "autoload": {
    4252        "psr-4": {
    43             "Barn2\\Plugin\\Easy_Post_Types_Fields\\": "src",
    44             "Barn2\\EPT_Lib\\": "lib"
     53            "Barn2\\Plugin\\Easy_Post_Types_Fields\\": "src"
    4554        },
    4655        "classmap": [
    47             "dependencies/src"
     56            "dependencies"
    4857        ]
    4958    },
  • easy-post-types-fields/trunk/easy-post-types-fields.php

    r2962617 r2997848  
    1212 * Plugin URI:      https://wordpress.org/plugins/easy-post-types-fields/
    1313 * Description:     Create custom post types, fields and taxonomies.
    14  * Version:         1.1.6
     14 * Version:         1.1.
    1515 * Author:          Barn2 Plugins
    1616 * Author URI:      https://barn2.com
     
    3030}
    3131
    32 const PLUGIN_VERSION = '1.1.6';
     32const PLUGIN_VERSION = '1.1.';
    3333const PLUGIN_FILE    = __FILE__;
    3434
  • easy-post-types-fields/trunk/readme.txt

    r2962617 r2997848  
    33Contributors: barn2media
    44Tags: custom post type, custom field, custom taxonomy, custom post types, custom fields, taxonomy, custom taxonomies, content type, post type, custom data, meta fields
    5 Requires at least: 5.0
    6 Tested up to: 6.3
    7 Requires PHP: 7.2
    8 Stable tag: 1.1.6
     5Requires at least: .0
     6Tested up to: 6.
     7Requires PHP: 7.
     8Stable tag: 1.1.
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    12812813. Recommended: Restrict access to your custom posts with the Password Protected Categories plugin.
    129129
    130 == Upgrade Notice ==
    131 
    132 = 1.0.0 =
    133 This is the initial release
    134 
    135130== Changelog ==
    136131
    137 = 1.1.6 =
    138  * Fix: Custom field's value can not be deleted
     132= 1.1.7 =
     133 * Fix: Fatal error when deleting the plugin
     134 * Dev: Updated internal libraries and classes
     135 * Dev: Modified the taxonomy column in different post types
     136 * Dev: Tested up to WordPress 6.4
    139137
    140138See changelog.txt for more details.
  • easy-post-types-fields/trunk/src/Admin/Admin_Controller.php

    r2909586 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin;
    44
    5 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    6     Barn2\EPT_Lib\Registerable,
    7     Barn2\EPT_Lib\Service,
    8     Barn2\EPT_Lib\Service_Container,
     5use Barn2\Lib\Plugin\Simple_Plugin,
     6    Barn2\Lib\Registerable,
     7    Barn2\Lib\Service,
     8    Barn2\Lib\Service_Container,
    99    Barn2\Plugin\Easy_Post_Types_Fields\Util;
    1010
     
    3636    public function __construct( Simple_Plugin $plugin ) {
    3737        $this->plugin = $plugin;
     38
     39
    3840    }
    3941
     
    4143     * {@inheritdoc}
    4244     */
    43     public function get_services() {
    44         $services = [
    45             'cpt_editor'    => new CPT_Editor( $this->plugin ),
    46             'review_notice' => new Review_Notice( $this->plugin ),
    47             'wizard'        => new Wizard\Setup_Wizard( $this->plugin ),
    48         ];
    49 
    50         return $services;
     45    public function add_services() {
     46        $this->add_service( 'cpt_editor', new CPT_Editor( $this->plugin ) );
     47        $this->add_service( 'review_notice', new Review_Notice( $this->plugin ) );
     48        $this->add_service( 'wizard', new Wizard\Setup_Wizard( $this->plugin ) );
     49        $this->add_service( 'taxonomy_columns', new Taxonomy_Columns() );
    5150    }
    5251
  • easy-post-types-fields/trunk/src/Admin/CPT_Editor.php

    r2909586 r2997848  
    1717use Barn2\Plugin\Easy_Post_Types_Fields\Plugin,
    1818    Barn2\Plugin\Easy_Post_Types_Fields\Util,
    19     Barn2\EPT_Lib\Plugin\Simple_Plugin,
    20     Barn2\EPT_Lib\Registerable,
    21     Barn2\EPT_Lib\Service,
    22     Barn2\EPT_Lib\Util as Lib_Util;
     19    Barn2\Lib\Plugin\Simple_Plugin,
     20    Barn2\Lib\Registerable,
     21    Barn2\Lib\Service,
     22    Barn2\Lib\Util as Lib_Util;
    2323
    2424use WP_Error;
  • easy-post-types-fields/trunk/src/Admin/List_Tables/Post_Type_List_Table.php

    r2893808 r2997848  
    3232     */
    3333    protected $post_types;
     34
     35
     36
     37
     38
     39
     40
     41
     42
    3443
    3544    /**
  • easy-post-types-fields/trunk/src/Admin/Plugin_Setup.php

    r2909586 r2997848  
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Starter;
    1414use Barn2\Plugin\Easy_Post_Types_Fields\Plugin;
    15 use Barn2\EPT_Lib\Registerable;
     15use Barn2\Lib\Registerable;
    1616
    1717/**
  • easy-post-types-fields/trunk/src/Admin/Review_Notice.php

    r2768423 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin;
    44
    5 use Barn2\EPT_Lib\Registerable,
    6     Barn2\EPT_Lib\Service;
     5use Barn2\Lib\Registerable,
     6    Barn2\Lib\Service;
    77
    88defined( 'ABSPATH' ) || exit;
  • easy-post-types-fields/trunk/src/Admin/Wizard/Setup_Wizard.php

    r2909586 r2997848  
    1212
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Util;
    14 use Barn2\EPT_Lib\Plugin\Simple_Plugin;
    15 use Barn2\EPT_Lib\Registerable;
    16 use Barn2\EPT_Lib\Util as Lib_Util;
     14use Barn2\Lib\Plugin\Simple_Plugin;
     15use Barn2\Lib\Registerable;
     16use Barn2\Lib\Util as Lib_Util;
    1717
    1818/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Starter.php

    r2847645 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Starter as Setup_Wizard_Starter;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Starter as Setup_Wizard_Starter;
    1414
    1515/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/Completed.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Ready;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Ready;
    1414
    1515/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/EPT_Features.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
    1414use Barn2\Plugin\Easy_Post_Types_Fields\Util;
    1515
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/EPT_Name.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
    1414
    1515/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/EPT_Ready.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Ready;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Ready;
    1414
    1515/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/Upsell.php

    r2719927 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Step;
    14 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Util;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Step;
     14use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Util;
    1515
    1616/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Steps/Welcome.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard\Steps;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Steps\Welcome_Free;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Steps\Welcome_Free;
    1414
    1515/**
  • easy-post-types-fields/trunk/src/Admin/Wizard/Wizard.php

    r2768423 r2997848  
    1111namespace Barn2\Plugin\Easy_Post_Types_Fields\Admin\Wizard;
    1212
    13 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Interfaces\Restartable;
    14 use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Barn2\Setup_Wizard\Setup_Wizard;
     13use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Interfaces\Restartable;
     14use Barn2\Plugin\Easy_Post_Types_Fields\Dependencies\Setup_Wizard\Setup_Wizard;
    1515
    1616/**
     
    6363        wp_enqueue_script( "{$slug}-library", $this->get_non_wc_asset(), $this->get_non_wc_dependencies(), $this->get_non_wc_version(), true );
    6464
    65         wp_enqueue_style( "{$slug}-components", $this->get_library_url() . 'resources/wc-vendor/components.css', false, $this->get_non_wc_version() );
     65        wp_enqueue_style( ".css', false, $this->get_non_wc_version() );
    6666        wp_enqueue_style( $slug, $this->get_library_url() . 'build/main.css', $styling_dependencies, filemtime( $this->get_library_path() . '/build/main.css' ) );
    6767    }
  • easy-post-types-fields/trunk/src/Integration/Barn2_Table_Plugin.php

    r2777168 r2997848  
    1212
    1313use Barn2\Plugin\Easy_Post_Types_Fields\Util,
    14     Barn2\EPT_Lib\Registerable,
    15     Barn2\EPT_Lib\Service;
     14    Barn2\Lib\Registerable,
     15    Barn2\Lib\Service;
    1616
    1717/**
  • easy-post-types-fields/trunk/src/Plugin.php

    r2768423 r2997848  
    22namespace Barn2\Plugin\Easy_Post_Types_Fields;
    33
    4 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    5     Barn2\EPT_Lib\Registerable,
    6     Barn2\EPT_Lib\Translatable,
    7     Barn2\EPT_Lib\Util as Lib_Util;
     4use Barn2\Lib\Plugin\Simple_Plugin,
     5    Barn2\Lib\Registerable,
     6    Barn2\Lib\Translatable,
     7    Barn2\Lib\Util as Lib_Util;
    88
    99/**
     
    4141        );
    4242
    43         $this->services = [];
     43        $this->;
    4444
    45         if ( Lib_Util::is_admin() ) {
    46             $this->services['admin/controller'] = new Admin\Admin_Controller( $this );
    47         }
    48 
    49         $this->services = array_merge(
    50             $this->services,
    51             [
    52                 'post_type_factory' => new Post_Type_Factory( $this ),
    53                 'ptp_integration'   => new Integration\Barn2_Table_Plugin(),
    54             ]
    55         );
    5645    }
    5746
     
    6049     */
    6150    public function register() {
    62         $plugin_setup = new Admin\Plugin_Setup( $this->get_file(), $this );
    63         $plugin_setup->register();
     51        parent::register();
    6452
    65         add_action( 'init', [ $this, 'load_plugin' ] );
     53        add_action( 'plugins_loaded', [ $this, 'add_services' ] );
     54
     55        add_action( 'init', [ $this, 'register_services' ] );
    6656        add_action( 'init', [ $this, 'load_textdomain' ], 5 );
    6757    }
    6858
    69     /**
    70      * {@inheritdoc}
    71      */
    72     public function load_plugin() {
    73         Lib_Util::register_services( $this->services );
     59    public function add_services() {
     60        if ( Lib_Util::is_admin() ) {
     61            $this->add_service( 'admin/controller', new Admin\Admin_Controller( $this ) );
     62        }
     63
     64        $this->add_service( 'post_type_factory', new Post_Type_Factory( $this ) );
     65        $this->add_service( 'ptp_integration', new Integration\Barn2_Table_Plugin() );
    7466    }
    7567
  • easy-post-types-fields/trunk/src/Post_Type_Factory.php

    r2719927 r2997848  
    33namespace Barn2\Plugin\Easy_Post_Types_Fields;
    44
    5 use Barn2\EPT_Lib\Plugin\Simple_Plugin,
    6     Barn2\EPT_Lib\Registerable,
    7     Barn2\EPT_Lib\Service;
     5use Barn2\Lib\Plugin\Simple_Plugin,
     6    Barn2\Lib\Registerable,
     7    Barn2\Lib\Service;
    88
    99use WP_Query;
  • easy-post-types-fields/trunk/src/Util.php

    r2719927 r2997848  
    22namespace Barn2\Plugin\Easy_Post_Types_Fields;
    33
    4 use Barn2\EPT_Lib\Util as Lib_Util;
     4use Barn2\Lib\Util as Lib_Util;
    55
    66use WP_Query;
  • easy-post-types-fields/trunk/vendor/composer/autoload_classmap.php

    r2909970 r2997848  
    77
    88return array(
    9     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Bootable' => $baseDir . '/dependencies/src/Interfaces/Bootable.php',
    10     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Pluggable' => $baseDir . '/dependencies/src/Interfaces/Pluggable.php',
    11     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Restartable' => $baseDir . '/dependencies/src/Interfaces/Restartable.php',
    12     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Setup_Wizard' => $baseDir . '/dependencies/src/Setup_Wizard.php',
    13     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Starter' => $baseDir . '/dependencies/src/Starter.php',
    14     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Step' => $baseDir . '/dependencies/src/Step.php',
    15     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Cross_Selling' => $baseDir . '/dependencies/src/Steps/Cross_Selling.php',
    16     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Ready' => $baseDir . '/dependencies/src/Steps/Ready.php',
    17     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome' => $baseDir . '/dependencies/src/Steps/Welcome.php',
    18     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome_Free' => $baseDir . '/dependencies/src/Steps/Welcome_Free.php',
    19     'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Util' => $baseDir . '/dependencies/src/Util.php',
     9    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Abstract_Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Abstract_Plugin_Promo.php',
     10    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Notices' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Notices.php',
     11    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Plugin_Promo.php',
     12    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_API_Helper' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_API_Helper.php',
     13    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Scripts' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Scripts.php',
     14    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Util.php',
     15    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\CSS_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/CSS_Util.php',
     16    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Cache' => $baseDir . '/dependencies/barn2/barn2-lib/src/Cache.php',
     17    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Conditional' => $baseDir . '/dependencies/barn2/barn2-lib/src/Conditional.php',
     18    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Admin_Links' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Admin_Links.php',
     19    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Plugin_Updater' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Plugin_Updater.php',
     20    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Key_Setting' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Key_Setting.php',
     21    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Notices' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Notices.php',
     22    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Setting' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Setting.php',
     23    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\EDD_Licensing' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/EDD_Licensing.php',
     24    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License.php',
     25    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_API' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_API.php',
     26    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Checker' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Checker.php',
     27    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Summary' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Summary.php',
     28    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Plugin_License' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/License/Plugin_License.php',
     29    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Licensed_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Licensed_Plugin.php',
     30    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin.php',
     31    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin_Activation_Listener' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin_Activation_Listener.php',
     32    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Premium_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Premium_Plugin.php',
     33    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Simple_Plugin' => $baseDir . '/dependencies/barn2/barn2-lib/src/Plugin/Simple_Plugin.php',
     34    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Registerable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Registerable.php',
     35    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Route' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Base_Route.php',
     36    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Server' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Base_Server.php',
     37    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Rest_Server' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Rest_Server.php',
     38    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Route' => $baseDir . '/dependencies/barn2/barn2-lib/src/Rest/Route.php',
     39    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Schedulable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Schedulable.php',
     40    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Scheduled_Task' => $baseDir . '/dependencies/barn2/barn2-lib/src/Scheduled_Task.php',
     41    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service.php',
     42    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Container' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service_Container.php',
     43    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Provider' => $baseDir . '/dependencies/barn2/barn2-lib/src/Service_Provider.php',
     44    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Template_Loader' => $baseDir . '/dependencies/barn2/barn2-lib/src/Template_Loader.php',
     45    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Traits\\Check_WP_Requirements' => $baseDir . '/dependencies/barn2/barn2-lib/src/Traits/Check_WP_Requirements.php',
     46    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Translatable' => $baseDir . '/dependencies/barn2/barn2-lib/src/Translatable.php',
     47    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/Util.php',
     48    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WP_Scoped_Hooks' => $baseDir . '/dependencies/barn2/barn2-lib/src/WP_Scoped_Hooks.php',
     49    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Custom_Settings_Fields' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Custom_Settings_Fields.php',
     50    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Navigation' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Navigation.php',
     51    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Plugin_Promo' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Plugin_Promo.php',
     52    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Settings_Util' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Settings_Util.php',
     53    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Templates' => $baseDir . '/dependencies/barn2/barn2-lib/src/WooCommerce/Templates.php',
     54    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Bootable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Bootable.php',
     55    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Pluggable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Pluggable.php',
     56    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Restartable' => $baseDir . '/dependencies/barn2/setup-wizard/src/Interfaces/Restartable.php',
     57    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Setup_Wizard' => $baseDir . '/dependencies/barn2/setup-wizard/src/Setup_Wizard.php',
     58    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Starter' => $baseDir . '/dependencies/barn2/setup-wizard/src/Starter.php',
     59    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Step' => $baseDir . '/dependencies/barn2/setup-wizard/src/Step.php',
     60    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Cross_Selling' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Cross_Selling.php',
     61    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Ready' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Ready.php',
     62    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Welcome.php',
     63    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome_Free' => $baseDir . '/dependencies/barn2/setup-wizard/src/Steps/Welcome_Free.php',
     64    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Util' => $baseDir . '/dependencies/barn2/setup-wizard/src/Util.php',
     65    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Dismiss' => $baseDir . '/dependencies/wptrt/admin-notices/src/Dismiss.php',
     66    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notice' => $baseDir . '/dependencies/wptrt/admin-notices/src/Notice.php',
     67    'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notices' => $baseDir . '/dependencies/wptrt/admin-notices/src/Notices.php',
    2068    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    2169);
  • easy-post-types-fields/trunk/vendor/composer/autoload_psr4.php

    r2909970 r2997848  
    88return array(
    99    'Barn2\\Plugin\\Easy_Post_Types_Fields\\' => array($baseDir . '/src'),
    10     'Barn2\\EPT_Lib\\' => array($baseDir . '/lib'),
    1110);
  • easy-post-types-fields/trunk/vendor/composer/autoload_static.php

    r2909970 r2997848  
    1111        array (
    1212            'Barn2\\Plugin\\Easy_Post_Types_Fields\\' => 36,
    13             'Barn2\\EPT_Lib\\' => 14,
    1413        ),
    1514    );
     
    2019            0 => __DIR__ . '/../..' . '/src',
    2120        ),
    22         'Barn2\\EPT_Lib\\' =>
    23         array (
    24             0 => __DIR__ . '/../..' . '/lib',
    25         ),
    2621    );
    2722
    2823    public static $classMap = array (
    29         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Bootable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Bootable.php',
    30         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Pluggable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Pluggable.php',
    31         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Interfaces\\Restartable' => __DIR__ . '/../..' . '/dependencies/src/Interfaces/Restartable.php',
    32         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Setup_Wizard' => __DIR__ . '/../..' . '/dependencies/src/Setup_Wizard.php',
    33         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Starter' => __DIR__ . '/../..' . '/dependencies/src/Starter.php',
    34         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Step' => __DIR__ . '/../..' . '/dependencies/src/Step.php',
    35         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Cross_Selling' => __DIR__ . '/../..' . '/dependencies/src/Steps/Cross_Selling.php',
    36         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Ready' => __DIR__ . '/../..' . '/dependencies/src/Steps/Ready.php',
    37         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome' => __DIR__ . '/../..' . '/dependencies/src/Steps/Welcome.php',
    38         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Steps\\Welcome_Free' => __DIR__ . '/../..' . '/dependencies/src/Steps/Welcome_Free.php',
    39         'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Barn2\\Setup_Wizard\\Util' => __DIR__ . '/../..' . '/dependencies/src/Util.php',
     24        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Abstract_Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Abstract_Plugin_Promo.php',
     25        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Notices' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Notices.php',
     26        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Plugin_Promo.php',
     27        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_API_Helper' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_API_Helper.php',
     28        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Scripts' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Scripts.php',
     29        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Admin\\Settings_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Admin/Settings_Util.php',
     30        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\CSS_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/CSS_Util.php',
     31        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Cache' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Cache.php',
     32        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Conditional' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Conditional.php',
     33        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Admin_Links' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Admin_Links.php',
     34        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Admin\\Plugin_Updater' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Admin/Plugin_Updater.php',
     35        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Key_Setting' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Key_Setting.php',
     36        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Notices' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Notices.php',
     37        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Admin\\License_Setting' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Admin/License_Setting.php',
     38        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\EDD_Licensing' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/EDD_Licensing.php',
     39        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License.php',
     40        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_API' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_API.php',
     41        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Checker' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Checker.php',
     42        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\License_Summary' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/License_Summary.php',
     43        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\License\\Plugin_License' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/License/Plugin_License.php',
     44        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Licensed_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Licensed_Plugin.php',
     45        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin.php',
     46        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Plugin_Activation_Listener' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Plugin_Activation_Listener.php',
     47        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Premium_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Premium_Plugin.php',
     48        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Plugin\\Simple_Plugin' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Plugin/Simple_Plugin.php',
     49        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Registerable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Registerable.php',
     50        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Route' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Base_Route.php',
     51        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Base_Server' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Base_Server.php',
     52        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Rest_Server' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Rest_Server.php',
     53        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Rest\\Route' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Rest/Route.php',
     54        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Schedulable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Schedulable.php',
     55        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Scheduled_Task' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Scheduled_Task.php',
     56        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service.php',
     57        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Container' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service_Container.php',
     58        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Service_Provider' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Service_Provider.php',
     59        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Template_Loader' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Template_Loader.php',
     60        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Traits\\Check_WP_Requirements' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Traits/Check_WP_Requirements.php',
     61        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Translatable' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Translatable.php',
     62        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/Util.php',
     63        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WP_Scoped_Hooks' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WP_Scoped_Hooks.php',
     64        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Custom_Settings_Fields' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Custom_Settings_Fields.php',
     65        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Navigation' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Navigation.php',
     66        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Plugin_Promo' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Plugin_Promo.php',
     67        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Admin\\Settings_Util' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Admin/Settings_Util.php',
     68        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Lib\\WooCommerce\\Templates' => __DIR__ . '/../..' . '/dependencies/barn2/barn2-lib/src/WooCommerce/Templates.php',
     69        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Bootable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Bootable.php',
     70        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Pluggable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Pluggable.php',
     71        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Interfaces\\Restartable' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Interfaces/Restartable.php',
     72        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Setup_Wizard' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Setup_Wizard.php',
     73        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Starter' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Starter.php',
     74        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Step' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Step.php',
     75        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Cross_Selling' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Cross_Selling.php',
     76        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Ready' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Ready.php',
     77        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Welcome.php',
     78        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Steps\\Welcome_Free' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Steps/Welcome_Free.php',
     79        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\Setup_Wizard\\Util' => __DIR__ . '/../..' . '/dependencies/barn2/setup-wizard/src/Util.php',
     80        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Dismiss' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Dismiss.php',
     81        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notice' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Notice.php',
     82        'Barn2\\Plugin\\Easy_Post_Types_Fields\\Dependencies\\WPTRT\\AdminNotices\\Notices' => __DIR__ . '/../..' . '/dependencies/wptrt/admin-notices/src/Notices.php',
    4083        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    4184    );
  • easy-post-types-fields/trunk/vendor/composer/installed.php

    r2962617 r2997848  
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e',
     8        'reference' => '',
    99        'name' => 'barn2/easy-post-types-fields',
    1010        'dev' => false,
     
    1717            'install_path' => __DIR__ . '/../../',
    1818            'aliases' => array(),
    19             'reference' => 'b09c2b671125f4d62d68d49e5dc6438b1315c44e',
     19            'reference' => '',
    2020            'dev_requirement' => false,
    2121        ),
Note: See TracChangeset for help on using the changeset viewer.