Skip to content
Snippets Groups Projects
Select Git revision
  • b517021b34aae149df025d4d9572a26686716586
  • master default protected
  • feat/npm-publish
  • feat/demo-deploy
  • change-demo-deploy
  • remove-smoke
  • feat/acceptance-tests
  • feature/deploy-composer.json
  • feature/mysql-bin-logs
  • skip-codecept-for-libs
  • include-composer-json
  • exclude-wp-assets
  • update_codecept_image
  • fix/silenced-copy
  • remove-free-translations
  • codeception-with-optional-step
  • improve-parallelization
  • linter-exit
  • change-images
  • fix/linter
  • globally-raise-mem-limit
  • no-symlink2
22 results

deploy.yml

Blame
  • composer.json 1.26 KiB
    {
      "name": "wpdesk/wp-forms",
      "description": "WP Forms",
      "authors": [
        {
          "name": "Marcin",
          "email": "marcin@wpdesk.pl"
        },
        {
          "name": "Krzysiek",
          "email": "krzysiek@wpdesk.pl"
        },
        {
          "name": "Piotr Potrebka",
          "email": "piotr.potrebka@wpdesk.pl"
        }
      ],
      "require": {
        "php": ">=7.0",
        "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": {
      },
      "extra": {
        "text-domain": "wp-forms",
        "translations-folder": "lang",
        "po-files": {
          "pl_PL": "pl_PL.po"
        }
      },
      "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"
      }
    }