Skip to content
Snippets Groups Projects
Select Git revision
  • 82feec1bb512803f6356a994f4d70e95d07d4c66
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.4
  • 3.3.3
  • 3.3.2
  • 3.3.1
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
25 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.60 KiB
    {
        "name": "wpdesk/wp-settings-field-sender-address",
        "description": "Library for displaying sender address in WooCommerce.",
        "license": "MIT",
        "keywords": ["woocommerce", "sender"],
        "homepage": "https://gitlab.com/wpdesk/wp-settings-sender-address",
        "minimum-stability": "stable",
        "authors": [
            {
                "name": "grola",
                "email": "grola@wpdesk.net"
            }
        ],
        "config": {
            "sort-packages": true,
            "platform": {
                "php": "5.6"
            }
        },
        "require": {
            "php": ">=5.6",
            "wpdesk/wpdesk-packer": "^2"
        },
        "require-dev": {
            "10up/wp_mock": "*",
            "mockery/mockery": "*",
            "phpunit/phpunit": "<7",
            "wp-coding-standards/wpcs": "^0.14.1",
            "squizlabs/php_codesniffer": "^3.0.2",
            "wimg/php-compatibility": "^8"
        },
        "autoload": {
    		"psr-4": {"WpDesk\\WooCommerce\\ShippingMethod\\Fields\\SenderAddress\\": "src/"}
        },
        "autoload-dev": {
        },
        "extra": {
            "text-domain": "wp-settings-field-sender-address",
            "translations-folder": "lang",
            "po-files": {
                "pl_PL": "pl_PL.po"
            }
        },
        "scripts": {
            "phpcs": "phpcs",
            "phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never",
            "phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage",
            "phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never",
            "phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage"
        }
    }