Skip to content
Snippets Groups Projects
Select Git revision
  • 030ee36bafd347226ddb12f03f927f736f0044a1
  • master default protected
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0
10 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1022 B
    {
      "name": "wpdesk/wp-api-client",
      "authors": [
        {
          "name": "Krzysiek",
          "email": "krzysiek@wpdesk.pl"
        }
      ],
      "require": {
        "php": ">=5.5",
        "psr/log": "^1.0.1",
        "wpdesk/wp-cache": "dev-feature/cache-resolver-creator",
        "wpdesk/wp-http-client": "^1.0",
        "psr/simple-cache": "^1.0"
      },
      "require-dev": {
        "phpunit/phpunit": "<7",
        "wp-coding-standards/wpcs": "^0.14.1",
        "squizlabs/php_codesniffer": "^3.0.2",
        "mockery/mockery": "*",
        "10up/wp_mock": "*"
      },
      "autoload": {
        "psr-4": {
          "WPDesk\\ApiClient\\": "src/"
        }
      },
      "autoload-dev": {
      },
      "scripts": {
        "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"
      }
    }