Skip to content
Snippets Groups Projects
Select Git revision
  • 63f05b22e38bdcbda39ccf16979fe06976a176b9
  • master default protected
  • bugfix/wordpress-review
  • bugfix/prevent-error-notice
  • remove-arrow
  • feature/update-message
  • feature/minimum-plugin-version-check-demo1
  • feature/plugin-name
  • 3.7.1
  • 3.7.0
  • 3.6.3
  • 3.6.2
  • 3.6.1
  • 3.6.0
  • 3.6.0-beta3
  • 3.6.0-beta2
  • 3.6.0-beta1
  • 3.5.2
  • 3.5.1
  • 3.5.0
  • 3.4.0
  • 3.3.0
  • 3.2.8
  • 3.2.7
  • 3.2.6
  • 3.2.5
  • 3.2.4
  • 3.2.3
28 results

CHANGELOG.md

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    composer.json 1.22 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",
    		"phpstan/phpstan": "^0.12",
    		"wpdesk/wp-code-sniffer": "^1.2.3",
    		"10up/wp_mock": "*",
    		"szepeviktor/phpstan-wordpress": "^0.7.7",
    		"phpstan/extension-installer": "^1.1"
    	},
    	"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"
    	}
    }