Skip to content
Snippets Groups Projects
Select Git revision
  • fefd64321cca0ee6e1aac2ebc8f70c7ebd5c207a
  • master default protected
  • fix/woo-stubs-dir
  • default-packages
  • use-internal-packages
  • update-setup
  • feature/wpdesk-cs
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.10.15
  • 1.10.12
  • 1.10.8
  • 1.10.7
  • 1.10.6
  • 1.10.5
  • 1.10.3
  • 1.10.2
27 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 864 B
    {
        "name": "wpdesk/plugin-template",
        "authors": [
            {
                "name": "Krzysiek",
                "email": "krzysiek@wpdesk.pl"
            }
        ],
        "require": {
            "php": ">=5.5"
        },
        "require-dev": {
            "phpunit/phpunit": "^6",
            "wp-coding-standards/wpcs": "^0.14.1",
            "squizlabs/php_codesniffer": "^3.0.2",
            "mockery/mockery": "^1.0",
            "10up/wp_mock": "^0.3",
            "wimg/php-compatibility": "^8",
            "apigen/apigen": "^4.1"
        },
        "autoload-dev": {
            "psr-4": {
                "JpkTest\\": "tests"
            }
        },
        "scripts": {
            "test": "echo composer is alive",
            "phpcs": "phpcs",
            "phpunit-unit": "phpunit --configuration phpunit-unit.xml",
            "phpunit-integration": "phpunit --configuration phpunit-integration.xml",
    	    "docs": "apigen generate"
        }
    }