Skip to content
Snippets Groups Projects
Select Git revision
  • ec88585ae6af8eee3559d617fc3bf7a74c1d6cec
  • master default protected
  • feat/woo-template
  • organize-tests
  • feat/add-show-rendered-method
  • devel
  • 2.1.0
  • 2.0.0
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0
12 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 985 B
    {
        "name": "wpdesk/wp-view",
        "authors": [
            {
                "name": "Krzysiek",
                "email": "krzysiek@wpdesk.pl"
            }
        ],
        "require": {
            "php": ">=5.5"
        },
        "require-dev": {
            "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": {
            "classmap": ["src/"]
        },
        "autoload-dev": {
        },
        "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"
        }
    }