Skip to content
Snippets Groups Projects
Select Git revision
  • 3c3021c4eaa217cae402b411f28cd6d2666e6bf5
  • 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

.gitlab-ci.yml

Blame
  • 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-beta",
        "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"
      }
    }