Skip to content
Snippets Groups Projects
Select Git revision
  • 32aabe50e46116c2996fef82b7ba932df1a63cd4
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 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
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.02 KiB
    {
      "name": "wpdesk/wp-forms",
      "authors": [
        {
          "name": "Marcin",
          "email": "marcin@wpdesk.pl"
        },
        {
          "name": "Krzysiek",
          "email": "krzysiek@wpdesk.pl"
        }
      ],
      "require": {
        "php": ">=5.6",
        "ext-curl": "*",
        "ext-json": "*",
        "wpdesk/wp-persistence": "^2.0|^3.0",
        "wpdesk/wp-view": "^1.1"
      },
      "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\\Forms\\": "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"
      }
    }