Skip to content
Snippets Groups Projects
Select Git revision
  • e8caff8c5047bb7771c0fcaee92a258957233dca
  • master default protected
  • bugfix/wordpress-review
  • bugfix/prevent-error-notice
  • remove-arrow
  • feature/update-message
  • feature/minimum-plugin-version-check-demo1
  • feature/plugin-name
  • 3.7.1
  • 3.7.0
  • 3.6.3
  • 3.6.2
  • 3.6.1
  • 3.6.0
  • 3.6.0-beta3
  • 3.6.0-beta2
  • 3.6.0-beta1
  • 3.5.2
  • 3.5.1
  • 3.5.0
  • 3.4.0
  • 3.3.0
  • 3.2.8
  • 3.2.7
  • 3.2.6
  • 3.2.5
  • 3.2.4
  • 3.2.3
28 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.34 KiB
    {
        "name": "wpdesk/wp-basic-requirements",
        "authors": [
            {
                "name": "Krzysiek",
                "email": "krzysiek@wpdesk.pl"
            }
        ],
        "require": {
            "php": ">=5.3"
        },
        "require-dev": {
            "php": ">=5.5",
            "phpunit/phpunit": "<7",
            "wp-coding-standards/wpcs": "^0.14.1",
            "squizlabs/php_codesniffer": "^3.0.2",
            "mockery/mockery": "*",
            "10up/wp_mock": "*",
            "wimg/php-compatibility": "^8"
        },
        "autoload": {
    
        },
        "autoload-dev": {
            "classmap": ["src", "tests"]
        },
        "extra": {
            "text-domain": "wp-basic-requirements",
            "translations-folder": "lang",
            "po-files": {
                "pl_PL": "pl_PL.po",
                "en_AU": "en_AU.po",
                "en_CA": "en_CA.po",
                "en_GB": "en_GB.po",
                "de_DE": "de_DE.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",
    
            "docs": "apigen generate"
        }
    }