Skip to content
Snippets Groups Projects
Select Git revision
  • 13d538a7474f4a07414a72a979aecb653d7c47db
  • 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.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": "^2"
    	},
    	"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"
    	}
    }