Skip to content
Snippets Groups Projects
Select Git revision
  • 04ac3a9f05b98d426315a0149da1d031e410d584
  • master default protected
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 1.0.0-beta8
  • 1.0.0-beta7
  • 1.0.0-beta6
  • 1.0.0-beta5
  • 1.0.0-beta4
  • 1.0.0-beta3
  • 1.0.0-beta2
  • 1.0.0-beta1
14 results

.babelrc

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