Plugin Directory

Changeset 3465930


Ignore:
Timestamp:
02/20/2026 04:21:44 PM (6 weeks ago)
Author:
printdotcom
Message:

Update to version 1.0.1 from GitHub

Location:
pdc-pod
Files:
28 added
29 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pdc-pod/assets/banner-1544x500.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • pdc-pod/assets/banner-772x250.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • pdc-pod/assets/icon-128x128.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • pdc-pod/assets/icon-256x256.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • pdc-pod/assets/logo.svg

    • Property svn:mime-type set to image/svg+xml
  • pdc-pod/tags/1.0.1/CHANGELOG.md

    r3421416 r3465930  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
     8## [1.0.1]
     9
     10### Added
     11
     12- Initial version of the plug-in
     13
     14### Changed
     15
     16- fix: API Client did not send pdc-request-source due to header validation
     17
    818## [1.0.0]
    919
  • pdc-pod/tags/1.0.1/README.md

    r3421416 r3465930  
    103103- [WordPress Documentation Standards](https://developer.wordpress.org/coding-standards/inline-documentation-standards/)
    104104- [Conventional Commits](https://www.conventionalcommits.org/) for commit messages
     105
     106
     107
     108
     109### Translations
     110
     111#### When a new translation is added
     112
     113When you add new strings that need translation in your PHP code:
     114
     1151. **Regenerate the POT template file:**
     116   ```bash
     117   wp i18n make-pot . languages/pdc-pod.pot
     118   ```
     119
     1202. **Update existing PO files with new strings:**
     121   ```bash
     122   wp i18n update-po languages/pdc-pod.pot
     123   ```
     124
     1253. **Translate the new strings** in each `.po` file using [Poedit](https://poedit.net/) or a text editor
     126
     1274. **Compile translations to MO files:**
     128   ```bash
     129   wp i18n make-mo languages
     130   ```
     131
     132#### Adding a New Language
     133
     134When you want to add a new language:
     135
     1361. **Create a new PO file from the template:**
     137   ```bash
     138   cd languages
     139   cp pdc-pod.pot pdc-pod-[LOCALE].po
     140   ```
     141   Replace `[LOCALE]` with the WordPress locale code (e.g., `es_ES` for Spanish, `it_IT` for Italian)
     142
     1432. **Update the PO file header** with language information:
     144   - Set `Language-Team` and `Language` fields
     145   - Add appropriate plural forms for the language
     146
     1473. **Translate all strings** using Poedit or manually edit the `msgstr` values
     148
     1494. **Compile to MO file:**
     150   ```bash
     151   wp i18n make-mo languages
     152   ```
    105153
    106154### 🏗️ Project Structure
  • pdc-pod/tags/1.0.1/README.txt

    r3421416 r3465930  
    11=== Print.com Print on Demand ===
    2 Contributors: wcreate
     2Contributors: printdotcom
    33Donate link: https://print.com
    44Tags: woocommerce
    55Requires at least: 3.4
    66Tested up to: 6.9
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636== Changelog ==
    3737
     38= 1.0.1 =
     39
     40* feat: added basic translations for Dutch, French and German.
     41* fix: request source was not sent, simplified header parsing.
     42
    3843= 1.0.0 =
    3944* Initial version of the plug-in.
  • pdc-pod/tags/1.0.1/admin/PrintDotCom/APIClient.php

    r3421416 r3465930  
    144144
    145145        if ( ! empty( $headers ) ) {
    146             // Merge string header formats like 'key: value' or associative arrays.
    147             foreach ( $headers as $h ) {
    148                 if ( is_string( $h ) && false !== strpos( $h, ':' ) ) {
    149                     list($k, $v) = array_map( 'trim', explode( ':', $h, 2 ) );
    150                     if ( $k ) {
    151                         $args['headers'][ $k ] = $v;
    152                     }
    153                 } elseif ( is_array( $h ) ) {
    154                     $args['headers'] = array_merge( $args['headers'], $h );
    155                 }
    156             }
     146            $args['headers'] = array_merge( $args['headers'], $headers );
    157147        }
    158148
  • pdc-pod/tags/1.0.1/languages/pdc-pod.pot

    r3421416 r3465930  
     1# Copyright (C) 2025 Print.com
     2# This file is distributed under the GPL-2.0+.
     3msgid ""
     4msgstr ""
     5"Project-Id-Version: Print.com Print on Demand 1.0.0\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pdc-connector\n"
     7"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     8"Language-Team: LANGUAGE <LL@li.org>\n"
     9"MIME-Version: 1.0\n"
     10"Content-Type: text/plain; charset=UTF-8\n"
     11"Content-Transfer-Encoding: 8bit\n"
     12"POT-Creation-Date: 2025-12-19T14:40:30+00:00\n"
     13"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     14"X-Generator: WP-CLI 2.12.0\n"
     15"X-Domain: pdc-pod\n"
     16
     17#. Plugin Name of the plugin
     18#: pdc-pod.php
     19msgid "Print.com Print on Demand"
     20msgstr ""
     21
     22#. Plugin URI of the plugin
     23#: pdc-pod.php
     24msgid "https://github.com/printdotcom/pdc-pod"
     25msgstr ""
     26
     27#. Description of the plugin
     28#: pdc-pod.php
     29msgid "Allows customers to configure, edit and purchase products via the Print.com API."
     30msgstr ""
     31
     32#. Author of the plugin
     33#: pdc-pod.php
     34msgid "Print.com"
     35msgstr ""
     36
     37#. Author URI of the plugin
     38#: pdc-pod.php
     39msgid "https://print.com"
     40msgstr ""
     41
     42#: admin/AdminCore.php:479
     43msgid "Invalid credentials."
     44msgstr ""
     45
     46#: admin/AdminCore.php:527
     47msgid "Item is being produced at Print.com."
     48msgstr ""
     49
     50#. translators: placeholder is a URL to the track & trace page.
     51#: admin/AdminCore.php:594
     52#, php-format
     53msgid "Item has been shipped by Print.com. Track & Trace code: <a href=\"%1$s\">%2$s</a>."
     54msgstr ""
     55
     56#: admin/AdminCore.php:633
     57msgid "Product SKU is required."
     58msgstr ""
     59
     60#. translators: %s is the error message returned by the Print.com API.
     61#: admin/AdminCore.php:644
     62#, php-format
     63msgid "Could not retrieve presets: %s"
     64msgstr ""
     65
     66#: admin/AdminCore.php:676
     67msgid "Order item ID is required."
     68msgstr ""
     69
     70#. translators: placeholder is the order number.
     71#: admin/AdminCore.php:728
     72#, php-format
     73msgid "Item purchased at Print.com with order number: %s."
     74msgstr ""
     75
     76#: admin/partials/html-input-mediaupload.php:22
     77#: admin/partials/pdc-pod-admin-variation-data.php:57
     78#: admin/partials/pdc-pod-html-order-metabox.php:91
     79msgid "http://"
     80msgstr ""
     81
     82#: admin/partials/html-input-mediaupload.php:23
     83#: admin/partials/pdc-pod-admin-variation-data.php:61
     84#: admin/partials/pdc-pod-admin-variation-data.php:65
     85msgid "Choose file"
     86msgstr ""
     87
     88#: admin/partials/html-input-mediaupload.php:23
     89#: admin/partials/pdc-pod-admin-variation-data.php:62
     90msgid "Insert file URL"
     91msgstr ""
     92
     93#: admin/partials/pdc-pod-admin-general.php:19
     94msgid "This plugin allows you to connect your WooCommerce store to Print.com."
     95msgstr ""
     96
     97#: admin/partials/pdc-pod-admin-preset-select.php:24
     98msgid "Select a preset"
     99msgstr ""
     100
     101#: admin/partials/pdc-pod-admin-producttab.php:31
     102msgid "Print.com SKU"
     103msgstr ""
     104
     105#: admin/partials/pdc-pod-admin-producttab.php:37
     106msgid "Choose a product"
     107msgstr ""
     108
     109#: admin/partials/pdc-pod-admin-producttab.php:44
     110#: admin/partials/pdc-pod-admin-variation-data.php:39
     111msgid "Print.com Preset"
     112msgstr ""
     113
     114#: admin/partials/pdc-pod-admin-section-credentials.php:22
     115msgid "You can create an API key in your Print.com account settings. Visit"
     116msgstr ""
     117
     118#: admin/partials/pdc-pod-admin-section-credentials.php:26
     119msgid "create an API key and paste it in the input field below."
     120msgstr ""
     121
     122#: admin/partials/pdc-pod-admin-section-credentials.php:30
     123msgid "API Key verified. You are now connected!"
     124msgstr ""
     125
     126#: admin/partials/pdc-pod-admin-section-credentials.php:33
     127msgid "API Key is not valid. Check your environment and API Key"
     128msgstr ""
     129
     130#: admin/partials/pdc-pod-admin-section-credentials.php:39
     131msgid "API Key"
     132msgstr ""
     133
     134#: admin/partials/pdc-pod-admin-section-credentials.php:44
     135msgid "Verify"
     136msgstr ""
     137
     138#: admin/partials/pdc-pod-admin-section-credentials.php:49
     139msgid "Environment"
     140msgstr ""
     141
     142#: admin/partials/pdc-pod-admin-section-credentials.php:52
     143msgid "Test"
     144msgstr ""
     145
     146#: admin/partials/pdc-pod-admin-section-credentials.php:53
     147msgid "Live"
     148msgstr ""
     149
     150#: admin/partials/pdc-pod-admin-section-product.php:22
     151msgid "Configure how to set up the product connection with Print.com."
     152msgstr ""
     153
     154#: admin/partials/pdc-pod-admin-section-product.php:27
     155msgid "Presets"
     156msgstr ""
     157
     158#: admin/partials/pdc-pod-admin-section-product.php:31
     159msgid "Use preset copies"
     160msgstr ""
     161
     162#: admin/partials/pdc-pod-admin-section-product.php:33
     163msgid "When enabled, the number of copies from the preset will be used instead of allowing customers to choose their own quantity."
     164msgstr ""
     165
     166#: admin/partials/pdc-pod-admin-variation-data.php:40
     167msgid "Select a preset for this variant. When no preset is selected, it will use the default preset of this product."
     168msgstr ""
     169
     170#: admin/partials/pdc-pod-admin-variation-data.php:54
     171msgid "PDF"
     172msgstr ""
     173
     174#: admin/partials/pdc-pod-admin-variation-data.php:55
     175msgid "Enter a URL or select a file which belongs to this variant. This file will be the design which the customer will order."
     176msgstr ""
     177
     178#: admin/partials/pdc-pod-admin-variation-data.php:73
     179msgid "Please connect a Print.com product to this WooCommerce product first."
     180msgstr ""
     181
     182#: admin/partials/pdc-pod-html-order-metabox.php:20
     183msgid "Information"
     184msgstr ""
     185
     186#: admin/partials/pdc-pod-html-order-metabox.php:23
     187msgid "Actions"
     188msgstr ""
     189
     190#: admin/partials/pdc-pod-html-order-metabox.php:65
     191msgid "Order item number"
     192msgstr ""
     193
     194#: admin/partials/pdc-pod-html-order-metabox.php:66
     195msgid "Copies"
     196msgstr ""
     197
     198#: admin/partials/pdc-pod-html-order-metabox.php:67
     199msgid "Purchase Date"
     200msgstr ""
     201
     202#: admin/partials/pdc-pod-html-order-metabox.php:68
     203msgid "Item Status"
     204msgstr ""
     205
     206#: admin/partials/pdc-pod-html-order-metabox.php:69
     207msgid "Price"
     208msgstr ""
     209
     210#: admin/partials/pdc-pod-html-order-metabox.php:70
     211msgid "Track & Trace"
     212msgstr ""
     213
     214#: admin/partials/pdc-pod-html-order-metabox.php:74
     215msgid "File"
     216msgstr ""
     217
     218#: admin/partials/pdc-pod-html-order-metabox.php:81
     219msgid "Missing file. Upload one to purchase."
     220msgstr ""
     221
     222#: admin/partials/pdc-pod-html-order-metabox.php:85
     223msgid "Missing preset. You need a connected preset on the product to purchase."
     224msgstr ""
     225
     226#: admin/partials/pdc-pod-html-order-metabox.php:95
     227msgid "Upload PDF"
     228msgstr ""
     229
     230#: admin/partials/pdc-pod-html-order-metabox.php:99
     231msgid "Replace PDF"
     232msgstr ""
     233
     234#: admin/partials/pdc-pod-html-order-metabox.php:101
     235msgid "Purchase"
     236msgstr ""
  • pdc-pod/tags/1.0.1/pdc-pod.php

    r3421416 r3465930  
    2525 * Plugin URI:        https://github.com/printdotcom/pdc-pod
    2626 * Description:       Allows customers to configure, edit and purchase products via the Print.com API.
    27  * Version:           1.0.0
     27 * Version:           1.0.1
    2828 * Author:            Print.com
    2929 * Author URI:        https://print.com
     
    5454 * @var string PDC_POD_VERSION Plugin version.
    5555 */
    56 define( 'PDC_POD_VERSION', '1.0.0' );
     56define( 'PDC_POD_VERSION', '1.0.1' );
    5757
    5858/**
  • pdc-pod/tags/1.0.1/vendor/composer/InstalledVersions.php

    r3421416 r3465930  
    2727class InstalledVersions
    2828{
     29    /**
     30     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     31     * @internal
     32     */
     33    private static $selfDir = null;
     34
    2935    /**
    3036     * @var mixed[]|null
     
    324330
    325331    /**
     332     * @return string
     333     */
     334    private static function getSelfDir()
     335    {
     336        if (self::$selfDir === null) {
     337            self::$selfDir = strtr(__DIR__, '\\', '/');
     338        }
     339
     340        return self::$selfDir;
     341    }
     342
     343    /**
    326344     * @return array[]
    327345     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
     
    337355
    338356        if (self::$canGetVendors) {
    339             $selfDir = strtr(__DIR__, '\\', '/');
     357            $selfDir = self::getSelfDir();
    340358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    341359                $vendorDir = strtr($vendorDir, '\\', '/');
  • pdc-pod/tags/1.0.1/vendor/composer/autoload_classmap.php

    r3421416 r3465930  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
    11     'PHPCSUtils\\BackCompat\\BCFile' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
    12     'PHPCSUtils\\BackCompat\\BCTokens' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
    13     'PHPCSUtils\\BackCompat\\Helper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
    14     'PHPCSUtils\\Exceptions\\InvalidTokenArray' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
    15     'PHPCSUtils\\Exceptions\\LogicException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
    16     'PHPCSUtils\\Exceptions\\MissingArgumentError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
    17     'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
    18     'PHPCSUtils\\Exceptions\\RuntimeException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
    19     'PHPCSUtils\\Exceptions\\TestFileNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
    20     'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
    21     'PHPCSUtils\\Exceptions\\TestTargetNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
    22     'PHPCSUtils\\Exceptions\\TypeError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
    23     'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
    24     'PHPCSUtils\\Exceptions\\ValueError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
    25     'PHPCSUtils\\Fixers\\SpacesFixer' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
    26     'PHPCSUtils\\Internal\\Cache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
    27     'PHPCSUtils\\Internal\\IsShortArrayOrList' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
    28     'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
    29     'PHPCSUtils\\Internal\\NoFileCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
    30     'PHPCSUtils\\Internal\\StableCollections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
    31     'PHPCSUtils\\TestUtils\\ConfigDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
    32     'PHPCSUtils\\TestUtils\\RulesetDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
    33     'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
    34     'PHPCSUtils\\Tokens\\Collections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
    35     'PHPCSUtils\\Tokens\\TokenHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
    36     'PHPCSUtils\\Utils\\Arrays' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
    37     'PHPCSUtils\\Utils\\Conditions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
    38     'PHPCSUtils\\Utils\\Constants' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
    39     'PHPCSUtils\\Utils\\Context' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
    40     'PHPCSUtils\\Utils\\ControlStructures' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
    41     'PHPCSUtils\\Utils\\FileInfo' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
    42     'PHPCSUtils\\Utils\\FilePath' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
    43     'PHPCSUtils\\Utils\\FunctionDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
    44     'PHPCSUtils\\Utils\\GetTokensAsString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
    45     'PHPCSUtils\\Utils\\Lists' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
    46     'PHPCSUtils\\Utils\\MessageHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
    47     'PHPCSUtils\\Utils\\Namespaces' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
    48     'PHPCSUtils\\Utils\\NamingConventions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
    49     'PHPCSUtils\\Utils\\Numbers' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
    50     'PHPCSUtils\\Utils\\ObjectDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
    51     'PHPCSUtils\\Utils\\Operators' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
    52     'PHPCSUtils\\Utils\\Orthography' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
    53     'PHPCSUtils\\Utils\\Parentheses' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
    54     'PHPCSUtils\\Utils\\PassedParameters' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
    55     'PHPCSUtils\\Utils\\Scopes' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
    56     'PHPCSUtils\\Utils\\TextStrings' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
    57     'PHPCSUtils\\Utils\\TypeString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
    58     'PHPCSUtils\\Utils\\UseStatements' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
    59     'PHPCSUtils\\Utils\\Variables' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
     10    'PdcPod\\Admin\\AdminCore' => $baseDir . '/admin/AdminCore.php',
     11    'PdcPod\\Admin\\PrintDotCom\\APIClient' => $baseDir . '/admin/PrintDotCom/APIClient.php',
     12    'PdcPod\\Admin\\PrintDotCom\\Preset' => $baseDir . '/admin/PrintDotCom/Preset.php',
     13    'PdcPod\\Admin\\PrintDotCom\\Product' => $baseDir . '/admin/PrintDotCom/Product.php',
     14    'PdcPod\\Front\\FrontCore' => $baseDir . '/front/FrontCore.php',
     15    'PdcPod\\Includes\\Core' => $baseDir . '/includes/Core.php',
     16    'PdcPod\\Includes\\I18n' => $baseDir . '/includes/I18n.php',
     17    'PdcPod\\Includes\\Loader' => $baseDir . '/includes/Loader.php',
    6018);
  • pdc-pod/tags/1.0.1/vendor/composer/autoload_psr4.php

    r3421416 r3465930  
    1010    'PdcPod\\Front\\' => array($baseDir . '/front'),
    1111    'PdcPod\\Admin\\' => array($baseDir . '/admin'),
    12     'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'),
    1312);
  • pdc-pod/tags/1.0.1/vendor/composer/autoload_static.php

    r3421416 r3465930  
    1313            'PdcPod\\Front\\' => 13,
    1414            'PdcPod\\Admin\\' => 13,
    15             'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => 57,
    1615        ),
    1716    );
     
    3029            0 => __DIR__ . '/../..' . '/admin',
    3130        ),
    32         'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' =>
    33         array (
    34             0 => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src',
    35         ),
    3631    );
    3732
    3833    public static $classMap = array (
    3934        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    40         'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
    41         'PHPCSUtils\\BackCompat\\BCFile' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
    42         'PHPCSUtils\\BackCompat\\BCTokens' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
    43         'PHPCSUtils\\BackCompat\\Helper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
    44         'PHPCSUtils\\Exceptions\\InvalidTokenArray' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
    45         'PHPCSUtils\\Exceptions\\LogicException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
    46         'PHPCSUtils\\Exceptions\\MissingArgumentError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
    47         'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
    48         'PHPCSUtils\\Exceptions\\RuntimeException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
    49         'PHPCSUtils\\Exceptions\\TestFileNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
    50         'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
    51         'PHPCSUtils\\Exceptions\\TestTargetNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
    52         'PHPCSUtils\\Exceptions\\TypeError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
    53         'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
    54         'PHPCSUtils\\Exceptions\\ValueError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
    55         'PHPCSUtils\\Fixers\\SpacesFixer' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
    56         'PHPCSUtils\\Internal\\Cache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
    57         'PHPCSUtils\\Internal\\IsShortArrayOrList' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
    58         'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
    59         'PHPCSUtils\\Internal\\NoFileCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
    60         'PHPCSUtils\\Internal\\StableCollections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
    61         'PHPCSUtils\\TestUtils\\ConfigDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
    62         'PHPCSUtils\\TestUtils\\RulesetDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
    63         'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
    64         'PHPCSUtils\\Tokens\\Collections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
    65         'PHPCSUtils\\Tokens\\TokenHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
    66         'PHPCSUtils\\Utils\\Arrays' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
    67         'PHPCSUtils\\Utils\\Conditions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
    68         'PHPCSUtils\\Utils\\Constants' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
    69         'PHPCSUtils\\Utils\\Context' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
    70         'PHPCSUtils\\Utils\\ControlStructures' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
    71         'PHPCSUtils\\Utils\\FileInfo' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
    72         'PHPCSUtils\\Utils\\FilePath' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
    73         'PHPCSUtils\\Utils\\FunctionDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
    74         'PHPCSUtils\\Utils\\GetTokensAsString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
    75         'PHPCSUtils\\Utils\\Lists' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
    76         'PHPCSUtils\\Utils\\MessageHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
    77         'PHPCSUtils\\Utils\\Namespaces' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
    78         'PHPCSUtils\\Utils\\NamingConventions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
    79         'PHPCSUtils\\Utils\\Numbers' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
    80         'PHPCSUtils\\Utils\\ObjectDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
    81         'PHPCSUtils\\Utils\\Operators' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
    82         'PHPCSUtils\\Utils\\Orthography' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
    83         'PHPCSUtils\\Utils\\Parentheses' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
    84         'PHPCSUtils\\Utils\\PassedParameters' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
    85         'PHPCSUtils\\Utils\\Scopes' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
    86         'PHPCSUtils\\Utils\\TextStrings' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
    87         'PHPCSUtils\\Utils\\TypeString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
    88         'PHPCSUtils\\Utils\\UseStatements' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
    89         'PHPCSUtils\\Utils\\Variables' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
     35        'PdcPod\\Admin\\AdminCore' => __DIR__ . '/../..' . '/admin/AdminCore.php',
     36        'PdcPod\\Admin\\PrintDotCom\\APIClient' => __DIR__ . '/../..' . '/admin/PrintDotCom/APIClient.php',
     37        'PdcPod\\Admin\\PrintDotCom\\Preset' => __DIR__ . '/../..' . '/admin/PrintDotCom/Preset.php',
     38        'PdcPod\\Admin\\PrintDotCom\\Product' => __DIR__ . '/../..' . '/admin/PrintDotCom/Product.php',
     39        'PdcPod\\Front\\FrontCore' => __DIR__ . '/../..' . '/front/FrontCore.php',
     40        'PdcPod\\Includes\\Core' => __DIR__ . '/../..' . '/includes/Core.php',
     41        'PdcPod\\Includes\\I18n' => __DIR__ . '/../..' . '/includes/I18n.php',
     42        'PdcPod\\Includes\\Loader' => __DIR__ . '/../..' . '/includes/Loader.php',
    9043    );
    9144
  • pdc-pod/tags/1.0.1/vendor/composer/installed.json

    r3421416 r3465930  
    11{
    2     "packages": [
    3         {
    4             "name": "dealerdirect/phpcodesniffer-composer-installer",
    5             "version": "v1.1.2",
    6             "version_normalized": "1.1.2.0",
    7             "source": {
    8                 "type": "git",
    9                 "url": "https://github.com/PHPCSStandards/composer-installer.git",
    10                 "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
    15                 "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
    16                 "shasum": ""
    17             },
    18             "require": {
    19                 "composer-plugin-api": "^2.2",
    20                 "php": ">=5.4",
    21                 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
    22             },
    23             "require-dev": {
    24                 "composer/composer": "^2.2",
    25                 "ext-json": "*",
    26                 "ext-zip": "*",
    27                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    28                 "phpcompatibility/php-compatibility": "^9.0",
    29                 "yoast/phpunit-polyfills": "^1.0"
    30             },
    31             "time": "2025-07-17T20:45:56+00:00",
    32             "type": "composer-plugin",
    33             "extra": {
    34                 "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
    35             },
    36             "installation-source": "dist",
    37             "autoload": {
    38                 "psr-4": {
    39                     "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
    40                 }
    41             },
    42             "notification-url": "https://packagist.org/downloads/",
    43             "license": [
    44                 "MIT"
    45             ],
    46             "authors": [
    47                 {
    48                     "name": "Franck Nijhof",
    49                     "email": "opensource@frenck.dev",
    50                     "homepage": "https://frenck.dev",
    51                     "role": "Open source developer"
    52                 },
    53                 {
    54                     "name": "Contributors",
    55                     "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
    56                 }
    57             ],
    58             "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
    59             "keywords": [
    60                 "PHPCodeSniffer",
    61                 "PHP_CodeSniffer",
    62                 "code quality",
    63                 "codesniffer",
    64                 "composer",
    65                 "installer",
    66                 "phpcbf",
    67                 "phpcs",
    68                 "plugin",
    69                 "qa",
    70                 "quality",
    71                 "standard",
    72                 "standards",
    73                 "style guide",
    74                 "stylecheck",
    75                 "tests"
    76             ],
    77             "support": {
    78                 "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
    79                 "security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
    80                 "source": "https://github.com/PHPCSStandards/composer-installer"
    81             },
    82             "funding": [
    83                 {
    84                     "url": "https://github.com/PHPCSStandards",
    85                     "type": "github"
    86                 },
    87                 {
    88                     "url": "https://github.com/jrfnl",
    89                     "type": "github"
    90                 },
    91                 {
    92                     "url": "https://opencollective.com/php_codesniffer",
    93                     "type": "open_collective"
    94                 },
    95                 {
    96                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    97                     "type": "thanks_dev"
    98                 }
    99             ],
    100             "install-path": "../dealerdirect/phpcodesniffer-composer-installer"
    101         },
    102         {
    103             "name": "phpcsstandards/phpcsextra",
    104             "version": "1.4.0",
    105             "version_normalized": "1.4.0.0",
    106             "source": {
    107                 "type": "git",
    108                 "url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
    109                 "reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca"
    110             },
    111             "dist": {
    112                 "type": "zip",
    113                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/fa4b8d051e278072928e32d817456a7fdb57b6ca",
    114                 "reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca",
    115                 "shasum": ""
    116             },
    117             "require": {
    118                 "php": ">=5.4",
    119                 "phpcsstandards/phpcsutils": "^1.1.0",
    120                 "squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
    121             },
    122             "require-dev": {
    123                 "php-parallel-lint/php-console-highlighter": "^1.0",
    124                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    125                 "phpcsstandards/phpcsdevcs": "^1.1.6",
    126                 "phpcsstandards/phpcsdevtools": "^1.2.1",
    127                 "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    128             },
    129             "time": "2025-06-14T07:40:39+00:00",
    130             "type": "phpcodesniffer-standard",
    131             "extra": {
    132                 "branch-alias": {
    133                     "dev-stable": "1.x-dev",
    134                     "dev-develop": "1.x-dev"
    135                 }
    136             },
    137             "installation-source": "dist",
    138             "notification-url": "https://packagist.org/downloads/",
    139             "license": [
    140                 "LGPL-3.0-or-later"
    141             ],
    142             "authors": [
    143                 {
    144                     "name": "Juliette Reinders Folmer",
    145                     "homepage": "https://github.com/jrfnl",
    146                     "role": "lead"
    147                 },
    148                 {
    149                     "name": "Contributors",
    150                     "homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
    151                 }
    152             ],
    153             "description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
    154             "keywords": [
    155                 "PHP_CodeSniffer",
    156                 "phpcbf",
    157                 "phpcodesniffer-standard",
    158                 "phpcs",
    159                 "standards",
    160                 "static analysis"
    161             ],
    162             "support": {
    163                 "issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
    164                 "security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
    165                 "source": "https://github.com/PHPCSStandards/PHPCSExtra"
    166             },
    167             "funding": [
    168                 {
    169                     "url": "https://github.com/PHPCSStandards",
    170                     "type": "github"
    171                 },
    172                 {
    173                     "url": "https://github.com/jrfnl",
    174                     "type": "github"
    175                 },
    176                 {
    177                     "url": "https://opencollective.com/php_codesniffer",
    178                     "type": "open_collective"
    179                 },
    180                 {
    181                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    182                     "type": "thanks_dev"
    183                 }
    184             ],
    185             "install-path": "../phpcsstandards/phpcsextra"
    186         },
    187         {
    188             "name": "phpcsstandards/phpcsutils",
    189             "version": "1.1.1",
    190             "version_normalized": "1.1.1.0",
    191             "source": {
    192                 "type": "git",
    193                 "url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
    194                 "reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd"
    195             },
    196             "dist": {
    197                 "type": "zip",
    198                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
    199                 "reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
    200                 "shasum": ""
    201             },
    202             "require": {
    203                 "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
    204                 "php": ">=5.4",
    205                 "squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
    206             },
    207             "require-dev": {
    208                 "ext-filter": "*",
    209                 "php-parallel-lint/php-console-highlighter": "^1.0",
    210                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    211                 "phpcsstandards/phpcsdevcs": "^1.1.6",
    212                 "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
    213             },
    214             "time": "2025-08-10T01:04:45+00:00",
    215             "type": "phpcodesniffer-standard",
    216             "extra": {
    217                 "branch-alias": {
    218                     "dev-stable": "1.x-dev",
    219                     "dev-develop": "1.x-dev"
    220                 }
    221             },
    222             "installation-source": "dist",
    223             "autoload": {
    224                 "classmap": [
    225                     "PHPCSUtils/"
    226                 ]
    227             },
    228             "notification-url": "https://packagist.org/downloads/",
    229             "license": [
    230                 "LGPL-3.0-or-later"
    231             ],
    232             "authors": [
    233                 {
    234                     "name": "Juliette Reinders Folmer",
    235                     "homepage": "https://github.com/jrfnl",
    236                     "role": "lead"
    237                 },
    238                 {
    239                     "name": "Contributors",
    240                     "homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
    241                 }
    242             ],
    243             "description": "A suite of utility functions for use with PHP_CodeSniffer",
    244             "homepage": "https://phpcsutils.com/",
    245             "keywords": [
    246                 "PHP_CodeSniffer",
    247                 "phpcbf",
    248                 "phpcodesniffer-standard",
    249                 "phpcs",
    250                 "phpcs3",
    251                 "phpcs4",
    252                 "standards",
    253                 "static analysis",
    254                 "tokens",
    255                 "utility"
    256             ],
    257             "support": {
    258                 "docs": "https://phpcsutils.com/",
    259                 "issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
    260                 "security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
    261                 "source": "https://github.com/PHPCSStandards/PHPCSUtils"
    262             },
    263             "funding": [
    264                 {
    265                     "url": "https://github.com/PHPCSStandards",
    266                     "type": "github"
    267                 },
    268                 {
    269                     "url": "https://github.com/jrfnl",
    270                     "type": "github"
    271                 },
    272                 {
    273                     "url": "https://opencollective.com/php_codesniffer",
    274                     "type": "open_collective"
    275                 },
    276                 {
    277                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    278                     "type": "thanks_dev"
    279                 }
    280             ],
    281             "install-path": "../phpcsstandards/phpcsutils"
    282         },
    283         {
    284             "name": "squizlabs/php_codesniffer",
    285             "version": "3.13.2",
    286             "version_normalized": "3.13.2.0",
    287             "source": {
    288                 "type": "git",
    289                 "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    290                 "reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
    291             },
    292             "dist": {
    293                 "type": "zip",
    294                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
    295                 "reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
    296                 "shasum": ""
    297             },
    298             "require": {
    299                 "ext-simplexml": "*",
    300                 "ext-tokenizer": "*",
    301                 "ext-xmlwriter": "*",
    302                 "php": ">=5.4.0"
    303             },
    304             "require-dev": {
    305                 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    306             },
    307             "time": "2025-06-17T22:17:01+00:00",
    308             "bin": [
    309                 "bin/phpcbf",
    310                 "bin/phpcs"
    311             ],
    312             "type": "library",
    313             "extra": {
    314                 "branch-alias": {
    315                     "dev-master": "3.x-dev"
    316                 }
    317             },
    318             "installation-source": "dist",
    319             "notification-url": "https://packagist.org/downloads/",
    320             "license": [
    321                 "BSD-3-Clause"
    322             ],
    323             "authors": [
    324                 {
    325                     "name": "Greg Sherwood",
    326                     "role": "Former lead"
    327                 },
    328                 {
    329                     "name": "Juliette Reinders Folmer",
    330                     "role": "Current lead"
    331                 },
    332                 {
    333                     "name": "Contributors",
    334                     "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
    335                 }
    336             ],
    337             "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
    338             "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
    339             "keywords": [
    340                 "phpcs",
    341                 "standards",
    342                 "static analysis"
    343             ],
    344             "support": {
    345                 "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
    346                 "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
    347                 "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
    348                 "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
    349             },
    350             "funding": [
    351                 {
    352                     "url": "https://github.com/PHPCSStandards",
    353                     "type": "github"
    354                 },
    355                 {
    356                     "url": "https://github.com/jrfnl",
    357                     "type": "github"
    358                 },
    359                 {
    360                     "url": "https://opencollective.com/php_codesniffer",
    361                     "type": "open_collective"
    362                 },
    363                 {
    364                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    365                     "type": "thanks_dev"
    366                 }
    367             ],
    368             "install-path": "../squizlabs/php_codesniffer"
    369         },
    370         {
    371             "name": "wp-coding-standards/wpcs",
    372             "version": "3.2.0",
    373             "version_normalized": "3.2.0.0",
    374             "source": {
    375                 "type": "git",
    376                 "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
    377                 "reference": "d2421de7cec3274ae622c22c744de9a62c7925af"
    378             },
    379             "dist": {
    380                 "type": "zip",
    381                 "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/d2421de7cec3274ae622c22c744de9a62c7925af",
    382                 "reference": "d2421de7cec3274ae622c22c744de9a62c7925af",
    383                 "shasum": ""
    384             },
    385             "require": {
    386                 "ext-filter": "*",
    387                 "ext-libxml": "*",
    388                 "ext-tokenizer": "*",
    389                 "ext-xmlreader": "*",
    390                 "php": ">=5.4",
    391                 "phpcsstandards/phpcsextra": "^1.4.0",
    392                 "phpcsstandards/phpcsutils": "^1.1.0",
    393                 "squizlabs/php_codesniffer": "^3.13.0"
    394             },
    395             "require-dev": {
    396                 "php-parallel-lint/php-console-highlighter": "^1.0.0",
    397                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    398                 "phpcompatibility/php-compatibility": "^9.0",
    399                 "phpcsstandards/phpcsdevtools": "^1.2.0",
    400                 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
    401             },
    402             "suggest": {
    403                 "ext-iconv": "For improved results",
    404                 "ext-mbstring": "For improved results"
    405             },
    406             "time": "2025-07-24T20:08:31+00:00",
    407             "type": "phpcodesniffer-standard",
    408             "installation-source": "dist",
    409             "notification-url": "https://packagist.org/downloads/",
    410             "license": [
    411                 "MIT"
    412             ],
    413             "authors": [
    414                 {
    415                     "name": "Contributors",
    416                     "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"
    417                 }
    418             ],
    419             "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
    420             "keywords": [
    421                 "phpcs",
    422                 "standards",
    423                 "static analysis",
    424                 "wordpress"
    425             ],
    426             "support": {
    427                 "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",
    428                 "source": "https://github.com/WordPress/WordPress-Coding-Standards",
    429                 "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"
    430             },
    431             "funding": [
    432                 {
    433                     "url": "https://opencollective.com/php_codesniffer",
    434                     "type": "custom"
    435                 }
    436             ],
    437             "install-path": "../wp-coding-standards/wpcs"
    438         }
    439     ],
    440     "dev": true,
    441     "dev-package-names": [
    442         "dealerdirect/phpcodesniffer-composer-installer",
    443         "phpcsstandards/phpcsextra",
    444         "phpcsstandards/phpcsutils",
    445         "squizlabs/php_codesniffer",
    446         "wp-coding-standards/wpcs"
    447     ]
     2    "packages": [],
     3    "dev": false,
     4    "dev-package-names": []
    4485}
  • pdc-pod/tags/1.0.1/vendor/composer/installed.php

    r3421416 r3465930  
    11<?php return array(
    22    'root' => array(
    3         'name' => 'printdotcom/pdc-connector',
    4         'pretty_version' => 'dev-main',
    5         'version' => 'dev-main',
    6         'reference' => '733e1739b4b368319cb762aadf966b21f53c85ee',
     3        'name' => 'printdotcom/pdc-pod',
     4        'pretty_version' => '1.0.1',
     5        'version' => '1.0.1.0',
     6        'reference' => '48743b3372ead4f0271819dd9f411900aad57f34',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
    99        'aliases' => array(),
    10         'dev' => true,
     10        'dev' => false,
    1111    ),
    1212    'versions' => array(
    13         'dealerdirect/phpcodesniffer-composer-installer' => array(
    14             'pretty_version' => 'v1.1.2',
    15             'version' => '1.1.2.0',
    16             'reference' => 'e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1',
    17             'type' => 'composer-plugin',
    18             'install_path' => __DIR__ . '/../dealerdirect/phpcodesniffer-composer-installer',
    19             'aliases' => array(),
    20             'dev_requirement' => true,
    21         ),
    22         'phpcsstandards/phpcsextra' => array(
    23             'pretty_version' => '1.4.0',
    24             'version' => '1.4.0.0',
    25             'reference' => 'fa4b8d051e278072928e32d817456a7fdb57b6ca',
    26             'type' => 'phpcodesniffer-standard',
    27             'install_path' => __DIR__ . '/../phpcsstandards/phpcsextra',
    28             'aliases' => array(),
    29             'dev_requirement' => true,
    30         ),
    31         'phpcsstandards/phpcsutils' => array(
    32             'pretty_version' => '1.1.1',
    33             'version' => '1.1.1.0',
    34             'reference' => 'f7eb16f2fa4237d5db9e8fed8050239bee17a9bd',
    35             'type' => 'phpcodesniffer-standard',
    36             'install_path' => __DIR__ . '/../phpcsstandards/phpcsutils',
    37             'aliases' => array(),
    38             'dev_requirement' => true,
    39         ),
    40         'printdotcom/pdc-connector' => array(
    41             'pretty_version' => 'dev-main',
    42             'version' => 'dev-main',
    43             'reference' => '733e1739b4b368319cb762aadf966b21f53c85ee',
     13        'printdotcom/pdc-pod' => array(
     14            'pretty_version' => '1.0.1',
     15            'version' => '1.0.1.0',
     16            'reference' => '48743b3372ead4f0271819dd9f411900aad57f34',
    4417            'type' => 'project',
    4518            'install_path' => __DIR__ . '/../../',
     
    4720            'dev_requirement' => false,
    4821        ),
    49         'squizlabs/php_codesniffer' => array(
    50             'pretty_version' => '3.13.2',
    51             'version' => '3.13.2.0',
    52             'reference' => '5b5e3821314f947dd040c70f7992a64eac89025c',
    53             'type' => 'library',
    54             'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
    55             'aliases' => array(),
    56             'dev_requirement' => true,
    57         ),
    58         'wp-coding-standards/wpcs' => array(
    59             'pretty_version' => '3.2.0',
    60             'version' => '3.2.0.0',
    61             'reference' => 'd2421de7cec3274ae622c22c744de9a62c7925af',
    62             'type' => 'phpcodesniffer-standard',
    63             'install_path' => __DIR__ . '/../wp-coding-standards/wpcs',
    64             'aliases' => array(),
    65             'dev_requirement' => true,
    66         ),
    6722    ),
    6823);
  • pdc-pod/trunk/CHANGELOG.md

    r3421416 r3465930  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
     8## [1.0.1]
     9
     10### Added
     11
     12- Initial version of the plug-in
     13
     14### Changed
     15
     16- fix: API Client did not send pdc-request-source due to header validation
     17
    818## [1.0.0]
    919
  • pdc-pod/trunk/README.md

    r3421416 r3465930  
    103103- [WordPress Documentation Standards](https://developer.wordpress.org/coding-standards/inline-documentation-standards/)
    104104- [Conventional Commits](https://www.conventionalcommits.org/) for commit messages
     105
     106
     107
     108
     109### Translations
     110
     111#### When a new translation is added
     112
     113When you add new strings that need translation in your PHP code:
     114
     1151. **Regenerate the POT template file:**
     116   ```bash
     117   wp i18n make-pot . languages/pdc-pod.pot
     118   ```
     119
     1202. **Update existing PO files with new strings:**
     121   ```bash
     122   wp i18n update-po languages/pdc-pod.pot
     123   ```
     124
     1253. **Translate the new strings** in each `.po` file using [Poedit](https://poedit.net/) or a text editor
     126
     1274. **Compile translations to MO files:**
     128   ```bash
     129   wp i18n make-mo languages
     130   ```
     131
     132#### Adding a New Language
     133
     134When you want to add a new language:
     135
     1361. **Create a new PO file from the template:**
     137   ```bash
     138   cd languages
     139   cp pdc-pod.pot pdc-pod-[LOCALE].po
     140   ```
     141   Replace `[LOCALE]` with the WordPress locale code (e.g., `es_ES` for Spanish, `it_IT` for Italian)
     142
     1432. **Update the PO file header** with language information:
     144   - Set `Language-Team` and `Language` fields
     145   - Add appropriate plural forms for the language
     146
     1473. **Translate all strings** using Poedit or manually edit the `msgstr` values
     148
     1494. **Compile to MO file:**
     150   ```bash
     151   wp i18n make-mo languages
     152   ```
    105153
    106154### 🏗️ Project Structure
  • pdc-pod/trunk/README.txt

    r3421416 r3465930  
    11=== Print.com Print on Demand ===
    2 Contributors: wcreate
     2Contributors: printdotcom
    33Donate link: https://print.com
    44Tags: woocommerce
    55Requires at least: 3.4
    66Tested up to: 6.9
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636== Changelog ==
    3737
     38= 1.0.1 =
     39
     40* feat: added basic translations for Dutch, French and German.
     41* fix: request source was not sent, simplified header parsing.
     42
    3843= 1.0.0 =
    3944* Initial version of the plug-in.
  • pdc-pod/trunk/admin/PrintDotCom/APIClient.php

    r3421416 r3465930  
    144144
    145145        if ( ! empty( $headers ) ) {
    146             // Merge string header formats like 'key: value' or associative arrays.
    147             foreach ( $headers as $h ) {
    148                 if ( is_string( $h ) && false !== strpos( $h, ':' ) ) {
    149                     list($k, $v) = array_map( 'trim', explode( ':', $h, 2 ) );
    150                     if ( $k ) {
    151                         $args['headers'][ $k ] = $v;
    152                     }
    153                 } elseif ( is_array( $h ) ) {
    154                     $args['headers'] = array_merge( $args['headers'], $h );
    155                 }
    156             }
     146            $args['headers'] = array_merge( $args['headers'], $headers );
    157147        }
    158148
  • pdc-pod/trunk/languages/pdc-pod.pot

    r3421416 r3465930  
     1# Copyright (C) 2025 Print.com
     2# This file is distributed under the GPL-2.0+.
     3msgid ""
     4msgstr ""
     5"Project-Id-Version: Print.com Print on Demand 1.0.0\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pdc-connector\n"
     7"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     8"Language-Team: LANGUAGE <LL@li.org>\n"
     9"MIME-Version: 1.0\n"
     10"Content-Type: text/plain; charset=UTF-8\n"
     11"Content-Transfer-Encoding: 8bit\n"
     12"POT-Creation-Date: 2025-12-19T14:40:30+00:00\n"
     13"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     14"X-Generator: WP-CLI 2.12.0\n"
     15"X-Domain: pdc-pod\n"
     16
     17#. Plugin Name of the plugin
     18#: pdc-pod.php
     19msgid "Print.com Print on Demand"
     20msgstr ""
     21
     22#. Plugin URI of the plugin
     23#: pdc-pod.php
     24msgid "https://github.com/printdotcom/pdc-pod"
     25msgstr ""
     26
     27#. Description of the plugin
     28#: pdc-pod.php
     29msgid "Allows customers to configure, edit and purchase products via the Print.com API."
     30msgstr ""
     31
     32#. Author of the plugin
     33#: pdc-pod.php
     34msgid "Print.com"
     35msgstr ""
     36
     37#. Author URI of the plugin
     38#: pdc-pod.php
     39msgid "https://print.com"
     40msgstr ""
     41
     42#: admin/AdminCore.php:479
     43msgid "Invalid credentials."
     44msgstr ""
     45
     46#: admin/AdminCore.php:527
     47msgid "Item is being produced at Print.com."
     48msgstr ""
     49
     50#. translators: placeholder is a URL to the track & trace page.
     51#: admin/AdminCore.php:594
     52#, php-format
     53msgid "Item has been shipped by Print.com. Track & Trace code: <a href=\"%1$s\">%2$s</a>."
     54msgstr ""
     55
     56#: admin/AdminCore.php:633
     57msgid "Product SKU is required."
     58msgstr ""
     59
     60#. translators: %s is the error message returned by the Print.com API.
     61#: admin/AdminCore.php:644
     62#, php-format
     63msgid "Could not retrieve presets: %s"
     64msgstr ""
     65
     66#: admin/AdminCore.php:676
     67msgid "Order item ID is required."
     68msgstr ""
     69
     70#. translators: placeholder is the order number.
     71#: admin/AdminCore.php:728
     72#, php-format
     73msgid "Item purchased at Print.com with order number: %s."
     74msgstr ""
     75
     76#: admin/partials/html-input-mediaupload.php:22
     77#: admin/partials/pdc-pod-admin-variation-data.php:57
     78#: admin/partials/pdc-pod-html-order-metabox.php:91
     79msgid "http://"
     80msgstr ""
     81
     82#: admin/partials/html-input-mediaupload.php:23
     83#: admin/partials/pdc-pod-admin-variation-data.php:61
     84#: admin/partials/pdc-pod-admin-variation-data.php:65
     85msgid "Choose file"
     86msgstr ""
     87
     88#: admin/partials/html-input-mediaupload.php:23
     89#: admin/partials/pdc-pod-admin-variation-data.php:62
     90msgid "Insert file URL"
     91msgstr ""
     92
     93#: admin/partials/pdc-pod-admin-general.php:19
     94msgid "This plugin allows you to connect your WooCommerce store to Print.com."
     95msgstr ""
     96
     97#: admin/partials/pdc-pod-admin-preset-select.php:24
     98msgid "Select a preset"
     99msgstr ""
     100
     101#: admin/partials/pdc-pod-admin-producttab.php:31
     102msgid "Print.com SKU"
     103msgstr ""
     104
     105#: admin/partials/pdc-pod-admin-producttab.php:37
     106msgid "Choose a product"
     107msgstr ""
     108
     109#: admin/partials/pdc-pod-admin-producttab.php:44
     110#: admin/partials/pdc-pod-admin-variation-data.php:39
     111msgid "Print.com Preset"
     112msgstr ""
     113
     114#: admin/partials/pdc-pod-admin-section-credentials.php:22
     115msgid "You can create an API key in your Print.com account settings. Visit"
     116msgstr ""
     117
     118#: admin/partials/pdc-pod-admin-section-credentials.php:26
     119msgid "create an API key and paste it in the input field below."
     120msgstr ""
     121
     122#: admin/partials/pdc-pod-admin-section-credentials.php:30
     123msgid "API Key verified. You are now connected!"
     124msgstr ""
     125
     126#: admin/partials/pdc-pod-admin-section-credentials.php:33
     127msgid "API Key is not valid. Check your environment and API Key"
     128msgstr ""
     129
     130#: admin/partials/pdc-pod-admin-section-credentials.php:39
     131msgid "API Key"
     132msgstr ""
     133
     134#: admin/partials/pdc-pod-admin-section-credentials.php:44
     135msgid "Verify"
     136msgstr ""
     137
     138#: admin/partials/pdc-pod-admin-section-credentials.php:49
     139msgid "Environment"
     140msgstr ""
     141
     142#: admin/partials/pdc-pod-admin-section-credentials.php:52
     143msgid "Test"
     144msgstr ""
     145
     146#: admin/partials/pdc-pod-admin-section-credentials.php:53
     147msgid "Live"
     148msgstr ""
     149
     150#: admin/partials/pdc-pod-admin-section-product.php:22
     151msgid "Configure how to set up the product connection with Print.com."
     152msgstr ""
     153
     154#: admin/partials/pdc-pod-admin-section-product.php:27
     155msgid "Presets"
     156msgstr ""
     157
     158#: admin/partials/pdc-pod-admin-section-product.php:31
     159msgid "Use preset copies"
     160msgstr ""
     161
     162#: admin/partials/pdc-pod-admin-section-product.php:33
     163msgid "When enabled, the number of copies from the preset will be used instead of allowing customers to choose their own quantity."
     164msgstr ""
     165
     166#: admin/partials/pdc-pod-admin-variation-data.php:40
     167msgid "Select a preset for this variant. When no preset is selected, it will use the default preset of this product."
     168msgstr ""
     169
     170#: admin/partials/pdc-pod-admin-variation-data.php:54
     171msgid "PDF"
     172msgstr ""
     173
     174#: admin/partials/pdc-pod-admin-variation-data.php:55
     175msgid "Enter a URL or select a file which belongs to this variant. This file will be the design which the customer will order."
     176msgstr ""
     177
     178#: admin/partials/pdc-pod-admin-variation-data.php:73
     179msgid "Please connect a Print.com product to this WooCommerce product first."
     180msgstr ""
     181
     182#: admin/partials/pdc-pod-html-order-metabox.php:20
     183msgid "Information"
     184msgstr ""
     185
     186#: admin/partials/pdc-pod-html-order-metabox.php:23
     187msgid "Actions"
     188msgstr ""
     189
     190#: admin/partials/pdc-pod-html-order-metabox.php:65
     191msgid "Order item number"
     192msgstr ""
     193
     194#: admin/partials/pdc-pod-html-order-metabox.php:66
     195msgid "Copies"
     196msgstr ""
     197
     198#: admin/partials/pdc-pod-html-order-metabox.php:67
     199msgid "Purchase Date"
     200msgstr ""
     201
     202#: admin/partials/pdc-pod-html-order-metabox.php:68
     203msgid "Item Status"
     204msgstr ""
     205
     206#: admin/partials/pdc-pod-html-order-metabox.php:69
     207msgid "Price"
     208msgstr ""
     209
     210#: admin/partials/pdc-pod-html-order-metabox.php:70
     211msgid "Track & Trace"
     212msgstr ""
     213
     214#: admin/partials/pdc-pod-html-order-metabox.php:74
     215msgid "File"
     216msgstr ""
     217
     218#: admin/partials/pdc-pod-html-order-metabox.php:81
     219msgid "Missing file. Upload one to purchase."
     220msgstr ""
     221
     222#: admin/partials/pdc-pod-html-order-metabox.php:85
     223msgid "Missing preset. You need a connected preset on the product to purchase."
     224msgstr ""
     225
     226#: admin/partials/pdc-pod-html-order-metabox.php:95
     227msgid "Upload PDF"
     228msgstr ""
     229
     230#: admin/partials/pdc-pod-html-order-metabox.php:99
     231msgid "Replace PDF"
     232msgstr ""
     233
     234#: admin/partials/pdc-pod-html-order-metabox.php:101
     235msgid "Purchase"
     236msgstr ""
  • pdc-pod/trunk/pdc-pod.php

    r3421416 r3465930  
    2525 * Plugin URI:        https://github.com/printdotcom/pdc-pod
    2626 * Description:       Allows customers to configure, edit and purchase products via the Print.com API.
    27  * Version:           1.0.0
     27 * Version:           1.0.1
    2828 * Author:            Print.com
    2929 * Author URI:        https://print.com
     
    5454 * @var string PDC_POD_VERSION Plugin version.
    5555 */
    56 define( 'PDC_POD_VERSION', '1.0.0' );
     56define( 'PDC_POD_VERSION', '1.0.1' );
    5757
    5858/**
  • pdc-pod/trunk/vendor/composer/InstalledVersions.php

    r3421416 r3465930  
    2727class InstalledVersions
    2828{
     29    /**
     30     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     31     * @internal
     32     */
     33    private static $selfDir = null;
     34
    2935    /**
    3036     * @var mixed[]|null
     
    324330
    325331    /**
     332     * @return string
     333     */
     334    private static function getSelfDir()
     335    {
     336        if (self::$selfDir === null) {
     337            self::$selfDir = strtr(__DIR__, '\\', '/');
     338        }
     339
     340        return self::$selfDir;
     341    }
     342
     343    /**
    326344     * @return array[]
    327345     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
     
    337355
    338356        if (self::$canGetVendors) {
    339             $selfDir = strtr(__DIR__, '\\', '/');
     357            $selfDir = self::getSelfDir();
    340358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    341359                $vendorDir = strtr($vendorDir, '\\', '/');
  • pdc-pod/trunk/vendor/composer/autoload_classmap.php

    r3421416 r3465930  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
    11     'PHPCSUtils\\BackCompat\\BCFile' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
    12     'PHPCSUtils\\BackCompat\\BCTokens' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
    13     'PHPCSUtils\\BackCompat\\Helper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
    14     'PHPCSUtils\\Exceptions\\InvalidTokenArray' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
    15     'PHPCSUtils\\Exceptions\\LogicException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
    16     'PHPCSUtils\\Exceptions\\MissingArgumentError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
    17     'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
    18     'PHPCSUtils\\Exceptions\\RuntimeException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
    19     'PHPCSUtils\\Exceptions\\TestFileNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
    20     'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
    21     'PHPCSUtils\\Exceptions\\TestTargetNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
    22     'PHPCSUtils\\Exceptions\\TypeError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
    23     'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
    24     'PHPCSUtils\\Exceptions\\ValueError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
    25     'PHPCSUtils\\Fixers\\SpacesFixer' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
    26     'PHPCSUtils\\Internal\\Cache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
    27     'PHPCSUtils\\Internal\\IsShortArrayOrList' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
    28     'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
    29     'PHPCSUtils\\Internal\\NoFileCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
    30     'PHPCSUtils\\Internal\\StableCollections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
    31     'PHPCSUtils\\TestUtils\\ConfigDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
    32     'PHPCSUtils\\TestUtils\\RulesetDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
    33     'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
    34     'PHPCSUtils\\Tokens\\Collections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
    35     'PHPCSUtils\\Tokens\\TokenHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
    36     'PHPCSUtils\\Utils\\Arrays' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
    37     'PHPCSUtils\\Utils\\Conditions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
    38     'PHPCSUtils\\Utils\\Constants' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
    39     'PHPCSUtils\\Utils\\Context' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
    40     'PHPCSUtils\\Utils\\ControlStructures' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
    41     'PHPCSUtils\\Utils\\FileInfo' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
    42     'PHPCSUtils\\Utils\\FilePath' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
    43     'PHPCSUtils\\Utils\\FunctionDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
    44     'PHPCSUtils\\Utils\\GetTokensAsString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
    45     'PHPCSUtils\\Utils\\Lists' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
    46     'PHPCSUtils\\Utils\\MessageHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
    47     'PHPCSUtils\\Utils\\Namespaces' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
    48     'PHPCSUtils\\Utils\\NamingConventions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
    49     'PHPCSUtils\\Utils\\Numbers' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
    50     'PHPCSUtils\\Utils\\ObjectDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
    51     'PHPCSUtils\\Utils\\Operators' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
    52     'PHPCSUtils\\Utils\\Orthography' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
    53     'PHPCSUtils\\Utils\\Parentheses' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
    54     'PHPCSUtils\\Utils\\PassedParameters' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
    55     'PHPCSUtils\\Utils\\Scopes' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
    56     'PHPCSUtils\\Utils\\TextStrings' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
    57     'PHPCSUtils\\Utils\\TypeString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
    58     'PHPCSUtils\\Utils\\UseStatements' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
    59     'PHPCSUtils\\Utils\\Variables' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
     10    'PdcPod\\Admin\\AdminCore' => $baseDir . '/admin/AdminCore.php',
     11    'PdcPod\\Admin\\PrintDotCom\\APIClient' => $baseDir . '/admin/PrintDotCom/APIClient.php',
     12    'PdcPod\\Admin\\PrintDotCom\\Preset' => $baseDir . '/admin/PrintDotCom/Preset.php',
     13    'PdcPod\\Admin\\PrintDotCom\\Product' => $baseDir . '/admin/PrintDotCom/Product.php',
     14    'PdcPod\\Front\\FrontCore' => $baseDir . '/front/FrontCore.php',
     15    'PdcPod\\Includes\\Core' => $baseDir . '/includes/Core.php',
     16    'PdcPod\\Includes\\I18n' => $baseDir . '/includes/I18n.php',
     17    'PdcPod\\Includes\\Loader' => $baseDir . '/includes/Loader.php',
    6018);
  • pdc-pod/trunk/vendor/composer/autoload_psr4.php

    r3421416 r3465930  
    1010    'PdcPod\\Front\\' => array($baseDir . '/front'),
    1111    'PdcPod\\Admin\\' => array($baseDir . '/admin'),
    12     'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'),
    1312);
  • pdc-pod/trunk/vendor/composer/autoload_static.php

    r3421416 r3465930  
    1313            'PdcPod\\Front\\' => 13,
    1414            'PdcPod\\Admin\\' => 13,
    15             'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => 57,
    1615        ),
    1716    );
     
    3029            0 => __DIR__ . '/../..' . '/admin',
    3130        ),
    32         'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' =>
    33         array (
    34             0 => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src',
    35         ),
    3631    );
    3732
    3833    public static $classMap = array (
    3934        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    40         'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
    41         'PHPCSUtils\\BackCompat\\BCFile' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
    42         'PHPCSUtils\\BackCompat\\BCTokens' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
    43         'PHPCSUtils\\BackCompat\\Helper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
    44         'PHPCSUtils\\Exceptions\\InvalidTokenArray' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
    45         'PHPCSUtils\\Exceptions\\LogicException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
    46         'PHPCSUtils\\Exceptions\\MissingArgumentError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
    47         'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
    48         'PHPCSUtils\\Exceptions\\RuntimeException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
    49         'PHPCSUtils\\Exceptions\\TestFileNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
    50         'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
    51         'PHPCSUtils\\Exceptions\\TestTargetNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
    52         'PHPCSUtils\\Exceptions\\TypeError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
    53         'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
    54         'PHPCSUtils\\Exceptions\\ValueError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
    55         'PHPCSUtils\\Fixers\\SpacesFixer' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
    56         'PHPCSUtils\\Internal\\Cache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
    57         'PHPCSUtils\\Internal\\IsShortArrayOrList' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
    58         'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
    59         'PHPCSUtils\\Internal\\NoFileCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
    60         'PHPCSUtils\\Internal\\StableCollections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
    61         'PHPCSUtils\\TestUtils\\ConfigDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
    62         'PHPCSUtils\\TestUtils\\RulesetDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
    63         'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
    64         'PHPCSUtils\\Tokens\\Collections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
    65         'PHPCSUtils\\Tokens\\TokenHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
    66         'PHPCSUtils\\Utils\\Arrays' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
    67         'PHPCSUtils\\Utils\\Conditions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
    68         'PHPCSUtils\\Utils\\Constants' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
    69         'PHPCSUtils\\Utils\\Context' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
    70         'PHPCSUtils\\Utils\\ControlStructures' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
    71         'PHPCSUtils\\Utils\\FileInfo' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
    72         'PHPCSUtils\\Utils\\FilePath' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
    73         'PHPCSUtils\\Utils\\FunctionDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
    74         'PHPCSUtils\\Utils\\GetTokensAsString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
    75         'PHPCSUtils\\Utils\\Lists' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
    76         'PHPCSUtils\\Utils\\MessageHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
    77         'PHPCSUtils\\Utils\\Namespaces' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
    78         'PHPCSUtils\\Utils\\NamingConventions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
    79         'PHPCSUtils\\Utils\\Numbers' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
    80         'PHPCSUtils\\Utils\\ObjectDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
    81         'PHPCSUtils\\Utils\\Operators' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
    82         'PHPCSUtils\\Utils\\Orthography' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
    83         'PHPCSUtils\\Utils\\Parentheses' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
    84         'PHPCSUtils\\Utils\\PassedParameters' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
    85         'PHPCSUtils\\Utils\\Scopes' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
    86         'PHPCSUtils\\Utils\\TextStrings' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
    87         'PHPCSUtils\\Utils\\TypeString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
    88         'PHPCSUtils\\Utils\\UseStatements' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
    89         'PHPCSUtils\\Utils\\Variables' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
     35        'PdcPod\\Admin\\AdminCore' => __DIR__ . '/../..' . '/admin/AdminCore.php',
     36        'PdcPod\\Admin\\PrintDotCom\\APIClient' => __DIR__ . '/../..' . '/admin/PrintDotCom/APIClient.php',
     37        'PdcPod\\Admin\\PrintDotCom\\Preset' => __DIR__ . '/../..' . '/admin/PrintDotCom/Preset.php',
     38        'PdcPod\\Admin\\PrintDotCom\\Product' => __DIR__ . '/../..' . '/admin/PrintDotCom/Product.php',
     39        'PdcPod\\Front\\FrontCore' => __DIR__ . '/../..' . '/front/FrontCore.php',
     40        'PdcPod\\Includes\\Core' => __DIR__ . '/../..' . '/includes/Core.php',
     41        'PdcPod\\Includes\\I18n' => __DIR__ . '/../..' . '/includes/I18n.php',
     42        'PdcPod\\Includes\\Loader' => __DIR__ . '/../..' . '/includes/Loader.php',
    9043    );
    9144
  • pdc-pod/trunk/vendor/composer/installed.json

    r3421416 r3465930  
    11{
    2     "packages": [
    3         {
    4             "name": "dealerdirect/phpcodesniffer-composer-installer",
    5             "version": "v1.1.2",
    6             "version_normalized": "1.1.2.0",
    7             "source": {
    8                 "type": "git",
    9                 "url": "https://github.com/PHPCSStandards/composer-installer.git",
    10                 "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
    15                 "reference": "e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1",
    16                 "shasum": ""
    17             },
    18             "require": {
    19                 "composer-plugin-api": "^2.2",
    20                 "php": ">=5.4",
    21                 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
    22             },
    23             "require-dev": {
    24                 "composer/composer": "^2.2",
    25                 "ext-json": "*",
    26                 "ext-zip": "*",
    27                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    28                 "phpcompatibility/php-compatibility": "^9.0",
    29                 "yoast/phpunit-polyfills": "^1.0"
    30             },
    31             "time": "2025-07-17T20:45:56+00:00",
    32             "type": "composer-plugin",
    33             "extra": {
    34                 "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
    35             },
    36             "installation-source": "dist",
    37             "autoload": {
    38                 "psr-4": {
    39                     "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
    40                 }
    41             },
    42             "notification-url": "https://packagist.org/downloads/",
    43             "license": [
    44                 "MIT"
    45             ],
    46             "authors": [
    47                 {
    48                     "name": "Franck Nijhof",
    49                     "email": "opensource@frenck.dev",
    50                     "homepage": "https://frenck.dev",
    51                     "role": "Open source developer"
    52                 },
    53                 {
    54                     "name": "Contributors",
    55                     "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
    56                 }
    57             ],
    58             "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
    59             "keywords": [
    60                 "PHPCodeSniffer",
    61                 "PHP_CodeSniffer",
    62                 "code quality",
    63                 "codesniffer",
    64                 "composer",
    65                 "installer",
    66                 "phpcbf",
    67                 "phpcs",
    68                 "plugin",
    69                 "qa",
    70                 "quality",
    71                 "standard",
    72                 "standards",
    73                 "style guide",
    74                 "stylecheck",
    75                 "tests"
    76             ],
    77             "support": {
    78                 "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
    79                 "security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
    80                 "source": "https://github.com/PHPCSStandards/composer-installer"
    81             },
    82             "funding": [
    83                 {
    84                     "url": "https://github.com/PHPCSStandards",
    85                     "type": "github"
    86                 },
    87                 {
    88                     "url": "https://github.com/jrfnl",
    89                     "type": "github"
    90                 },
    91                 {
    92                     "url": "https://opencollective.com/php_codesniffer",
    93                     "type": "open_collective"
    94                 },
    95                 {
    96                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    97                     "type": "thanks_dev"
    98                 }
    99             ],
    100             "install-path": "../dealerdirect/phpcodesniffer-composer-installer"
    101         },
    102         {
    103             "name": "phpcsstandards/phpcsextra",
    104             "version": "1.4.0",
    105             "version_normalized": "1.4.0.0",
    106             "source": {
    107                 "type": "git",
    108                 "url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
    109                 "reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca"
    110             },
    111             "dist": {
    112                 "type": "zip",
    113                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/fa4b8d051e278072928e32d817456a7fdb57b6ca",
    114                 "reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca",
    115                 "shasum": ""
    116             },
    117             "require": {
    118                 "php": ">=5.4",
    119                 "phpcsstandards/phpcsutils": "^1.1.0",
    120                 "squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
    121             },
    122             "require-dev": {
    123                 "php-parallel-lint/php-console-highlighter": "^1.0",
    124                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    125                 "phpcsstandards/phpcsdevcs": "^1.1.6",
    126                 "phpcsstandards/phpcsdevtools": "^1.2.1",
    127                 "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    128             },
    129             "time": "2025-06-14T07:40:39+00:00",
    130             "type": "phpcodesniffer-standard",
    131             "extra": {
    132                 "branch-alias": {
    133                     "dev-stable": "1.x-dev",
    134                     "dev-develop": "1.x-dev"
    135                 }
    136             },
    137             "installation-source": "dist",
    138             "notification-url": "https://packagist.org/downloads/",
    139             "license": [
    140                 "LGPL-3.0-or-later"
    141             ],
    142             "authors": [
    143                 {
    144                     "name": "Juliette Reinders Folmer",
    145                     "homepage": "https://github.com/jrfnl",
    146                     "role": "lead"
    147                 },
    148                 {
    149                     "name": "Contributors",
    150                     "homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
    151                 }
    152             ],
    153             "description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
    154             "keywords": [
    155                 "PHP_CodeSniffer",
    156                 "phpcbf",
    157                 "phpcodesniffer-standard",
    158                 "phpcs",
    159                 "standards",
    160                 "static analysis"
    161             ],
    162             "support": {
    163                 "issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
    164                 "security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
    165                 "source": "https://github.com/PHPCSStandards/PHPCSExtra"
    166             },
    167             "funding": [
    168                 {
    169                     "url": "https://github.com/PHPCSStandards",
    170                     "type": "github"
    171                 },
    172                 {
    173                     "url": "https://github.com/jrfnl",
    174                     "type": "github"
    175                 },
    176                 {
    177                     "url": "https://opencollective.com/php_codesniffer",
    178                     "type": "open_collective"
    179                 },
    180                 {
    181                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    182                     "type": "thanks_dev"
    183                 }
    184             ],
    185             "install-path": "../phpcsstandards/phpcsextra"
    186         },
    187         {
    188             "name": "phpcsstandards/phpcsutils",
    189             "version": "1.1.1",
    190             "version_normalized": "1.1.1.0",
    191             "source": {
    192                 "type": "git",
    193                 "url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
    194                 "reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd"
    195             },
    196             "dist": {
    197                 "type": "zip",
    198                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
    199                 "reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
    200                 "shasum": ""
    201             },
    202             "require": {
    203                 "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
    204                 "php": ">=5.4",
    205                 "squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
    206             },
    207             "require-dev": {
    208                 "ext-filter": "*",
    209                 "php-parallel-lint/php-console-highlighter": "^1.0",
    210                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    211                 "phpcsstandards/phpcsdevcs": "^1.1.6",
    212                 "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
    213             },
    214             "time": "2025-08-10T01:04:45+00:00",
    215             "type": "phpcodesniffer-standard",
    216             "extra": {
    217                 "branch-alias": {
    218                     "dev-stable": "1.x-dev",
    219                     "dev-develop": "1.x-dev"
    220                 }
    221             },
    222             "installation-source": "dist",
    223             "autoload": {
    224                 "classmap": [
    225                     "PHPCSUtils/"
    226                 ]
    227             },
    228             "notification-url": "https://packagist.org/downloads/",
    229             "license": [
    230                 "LGPL-3.0-or-later"
    231             ],
    232             "authors": [
    233                 {
    234                     "name": "Juliette Reinders Folmer",
    235                     "homepage": "https://github.com/jrfnl",
    236                     "role": "lead"
    237                 },
    238                 {
    239                     "name": "Contributors",
    240                     "homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
    241                 }
    242             ],
    243             "description": "A suite of utility functions for use with PHP_CodeSniffer",
    244             "homepage": "https://phpcsutils.com/",
    245             "keywords": [
    246                 "PHP_CodeSniffer",
    247                 "phpcbf",
    248                 "phpcodesniffer-standard",
    249                 "phpcs",
    250                 "phpcs3",
    251                 "phpcs4",
    252                 "standards",
    253                 "static analysis",
    254                 "tokens",
    255                 "utility"
    256             ],
    257             "support": {
    258                 "docs": "https://phpcsutils.com/",
    259                 "issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
    260                 "security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
    261                 "source": "https://github.com/PHPCSStandards/PHPCSUtils"
    262             },
    263             "funding": [
    264                 {
    265                     "url": "https://github.com/PHPCSStandards",
    266                     "type": "github"
    267                 },
    268                 {
    269                     "url": "https://github.com/jrfnl",
    270                     "type": "github"
    271                 },
    272                 {
    273                     "url": "https://opencollective.com/php_codesniffer",
    274                     "type": "open_collective"
    275                 },
    276                 {
    277                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    278                     "type": "thanks_dev"
    279                 }
    280             ],
    281             "install-path": "../phpcsstandards/phpcsutils"
    282         },
    283         {
    284             "name": "squizlabs/php_codesniffer",
    285             "version": "3.13.2",
    286             "version_normalized": "3.13.2.0",
    287             "source": {
    288                 "type": "git",
    289                 "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    290                 "reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
    291             },
    292             "dist": {
    293                 "type": "zip",
    294                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
    295                 "reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
    296                 "shasum": ""
    297             },
    298             "require": {
    299                 "ext-simplexml": "*",
    300                 "ext-tokenizer": "*",
    301                 "ext-xmlwriter": "*",
    302                 "php": ">=5.4.0"
    303             },
    304             "require-dev": {
    305                 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    306             },
    307             "time": "2025-06-17T22:17:01+00:00",
    308             "bin": [
    309                 "bin/phpcbf",
    310                 "bin/phpcs"
    311             ],
    312             "type": "library",
    313             "extra": {
    314                 "branch-alias": {
    315                     "dev-master": "3.x-dev"
    316                 }
    317             },
    318             "installation-source": "dist",
    319             "notification-url": "https://packagist.org/downloads/",
    320             "license": [
    321                 "BSD-3-Clause"
    322             ],
    323             "authors": [
    324                 {
    325                     "name": "Greg Sherwood",
    326                     "role": "Former lead"
    327                 },
    328                 {
    329                     "name": "Juliette Reinders Folmer",
    330                     "role": "Current lead"
    331                 },
    332                 {
    333                     "name": "Contributors",
    334                     "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
    335                 }
    336             ],
    337             "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
    338             "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
    339             "keywords": [
    340                 "phpcs",
    341                 "standards",
    342                 "static analysis"
    343             ],
    344             "support": {
    345                 "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
    346                 "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
    347                 "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
    348                 "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
    349             },
    350             "funding": [
    351                 {
    352                     "url": "https://github.com/PHPCSStandards",
    353                     "type": "github"
    354                 },
    355                 {
    356                     "url": "https://github.com/jrfnl",
    357                     "type": "github"
    358                 },
    359                 {
    360                     "url": "https://opencollective.com/php_codesniffer",
    361                     "type": "open_collective"
    362                 },
    363                 {
    364                     "url": "https://thanks.dev/u/gh/phpcsstandards",
    365                     "type": "thanks_dev"
    366                 }
    367             ],
    368             "install-path": "../squizlabs/php_codesniffer"
    369         },
    370         {
    371             "name": "wp-coding-standards/wpcs",
    372             "version": "3.2.0",
    373             "version_normalized": "3.2.0.0",
    374             "source": {
    375                 "type": "git",
    376                 "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
    377                 "reference": "d2421de7cec3274ae622c22c744de9a62c7925af"
    378             },
    379             "dist": {
    380                 "type": "zip",
    381                 "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/d2421de7cec3274ae622c22c744de9a62c7925af",
    382                 "reference": "d2421de7cec3274ae622c22c744de9a62c7925af",
    383                 "shasum": ""
    384             },
    385             "require": {
    386                 "ext-filter": "*",
    387                 "ext-libxml": "*",
    388                 "ext-tokenizer": "*",
    389                 "ext-xmlreader": "*",
    390                 "php": ">=5.4",
    391                 "phpcsstandards/phpcsextra": "^1.4.0",
    392                 "phpcsstandards/phpcsutils": "^1.1.0",
    393                 "squizlabs/php_codesniffer": "^3.13.0"
    394             },
    395             "require-dev": {
    396                 "php-parallel-lint/php-console-highlighter": "^1.0.0",
    397                 "php-parallel-lint/php-parallel-lint": "^1.4.0",
    398                 "phpcompatibility/php-compatibility": "^9.0",
    399                 "phpcsstandards/phpcsdevtools": "^1.2.0",
    400                 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
    401             },
    402             "suggest": {
    403                 "ext-iconv": "For improved results",
    404                 "ext-mbstring": "For improved results"
    405             },
    406             "time": "2025-07-24T20:08:31+00:00",
    407             "type": "phpcodesniffer-standard",
    408             "installation-source": "dist",
    409             "notification-url": "https://packagist.org/downloads/",
    410             "license": [
    411                 "MIT"
    412             ],
    413             "authors": [
    414                 {
    415                     "name": "Contributors",
    416                     "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"
    417                 }
    418             ],
    419             "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
    420             "keywords": [
    421                 "phpcs",
    422                 "standards",
    423                 "static analysis",
    424                 "wordpress"
    425             ],
    426             "support": {
    427                 "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",
    428                 "source": "https://github.com/WordPress/WordPress-Coding-Standards",
    429                 "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"
    430             },
    431             "funding": [
    432                 {
    433                     "url": "https://opencollective.com/php_codesniffer",
    434                     "type": "custom"
    435                 }
    436             ],
    437             "install-path": "../wp-coding-standards/wpcs"
    438         }
    439     ],
    440     "dev": true,
    441     "dev-package-names": [
    442         "dealerdirect/phpcodesniffer-composer-installer",
    443         "phpcsstandards/phpcsextra",
    444         "phpcsstandards/phpcsutils",
    445         "squizlabs/php_codesniffer",
    446         "wp-coding-standards/wpcs"
    447     ]
     2    "packages": [],
     3    "dev": false,
     4    "dev-package-names": []
    4485}
  • pdc-pod/trunk/vendor/composer/installed.php

    r3421416 r3465930  
    11<?php return array(
    22    'root' => array(
    3         'name' => 'printdotcom/pdc-connector',
    4         'pretty_version' => 'dev-main',
    5         'version' => 'dev-main',
    6         'reference' => '733e1739b4b368319cb762aadf966b21f53c85ee',
     3        'name' => 'printdotcom/pdc-pod',
     4        'pretty_version' => '1.0.1',
     5        'version' => '1.0.1.0',
     6        'reference' => '48743b3372ead4f0271819dd9f411900aad57f34',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
    99        'aliases' => array(),
    10         'dev' => true,
     10        'dev' => false,
    1111    ),
    1212    'versions' => array(
    13         'dealerdirect/phpcodesniffer-composer-installer' => array(
    14             'pretty_version' => 'v1.1.2',
    15             'version' => '1.1.2.0',
    16             'reference' => 'e9cf5e4bbf7eeaf9ef5db34938942602838fc2b1',
    17             'type' => 'composer-plugin',
    18             'install_path' => __DIR__ . '/../dealerdirect/phpcodesniffer-composer-installer',
    19             'aliases' => array(),
    20             'dev_requirement' => true,
    21         ),
    22         'phpcsstandards/phpcsextra' => array(
    23             'pretty_version' => '1.4.0',
    24             'version' => '1.4.0.0',
    25             'reference' => 'fa4b8d051e278072928e32d817456a7fdb57b6ca',
    26             'type' => 'phpcodesniffer-standard',
    27             'install_path' => __DIR__ . '/../phpcsstandards/phpcsextra',
    28             'aliases' => array(),
    29             'dev_requirement' => true,
    30         ),
    31         'phpcsstandards/phpcsutils' => array(
    32             'pretty_version' => '1.1.1',
    33             'version' => '1.1.1.0',
    34             'reference' => 'f7eb16f2fa4237d5db9e8fed8050239bee17a9bd',
    35             'type' => 'phpcodesniffer-standard',
    36             'install_path' => __DIR__ . '/../phpcsstandards/phpcsutils',
    37             'aliases' => array(),
    38             'dev_requirement' => true,
    39         ),
    40         'printdotcom/pdc-connector' => array(
    41             'pretty_version' => 'dev-main',
    42             'version' => 'dev-main',
    43             'reference' => '733e1739b4b368319cb762aadf966b21f53c85ee',
     13        'printdotcom/pdc-pod' => array(
     14            'pretty_version' => '1.0.1',
     15            'version' => '1.0.1.0',
     16            'reference' => '48743b3372ead4f0271819dd9f411900aad57f34',
    4417            'type' => 'project',
    4518            'install_path' => __DIR__ . '/../../',
     
    4720            'dev_requirement' => false,
    4821        ),
    49         'squizlabs/php_codesniffer' => array(
    50             'pretty_version' => '3.13.2',
    51             'version' => '3.13.2.0',
    52             'reference' => '5b5e3821314f947dd040c70f7992a64eac89025c',
    53             'type' => 'library',
    54             'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
    55             'aliases' => array(),
    56             'dev_requirement' => true,
    57         ),
    58         'wp-coding-standards/wpcs' => array(
    59             'pretty_version' => '3.2.0',
    60             'version' => '3.2.0.0',
    61             'reference' => 'd2421de7cec3274ae622c22c744de9a62c7925af',
    62             'type' => 'phpcodesniffer-standard',
    63             'install_path' => __DIR__ . '/../wp-coding-standards/wpcs',
    64             'aliases' => array(),
    65             'dev_requirement' => true,
    66         ),
    6722    ),
    6823);
Note: See TracChangeset for help on using the changeset viewer.