Skip to content
Snippets Groups Projects
Select Git revision
  • 66c383153208b478e0fd9d80169001390914a064
  • master default protected
  • fix/deprecated_functions
  • devel
  • feat/translations
  • feat/upgrade_to_pro_url
  • feat/lang
  • bugfix/require-interface
  • bugfix/require-once-error
  • feature/activation-hooks
  • feature/template-loader
  • feature/template-renderer
  • feature/plugin-activation
  • feature/hookable-object
  • feature/builder-pattern
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 2.0.0-beta1
  • 1.4.4
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1
  • 1.0
32 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.12 KiB
    {
    	"name": "wpdesk/wp-builder",
    	"authors": [
    		{
    			"name": "Krzysiek",
    			"email": "krzysiek@wpdesk.pl"
    		}
    	],
    	"require": {
    		"php": ">=7.4 || ^8"
    	},
    	"require-dev": {
    		"phpunit/phpunit": "^9",
    		"10up/wp_mock": "^1",
    		"wpdesk/wp-code-sniffer": "^1",
    		"wpdesk/phpstan-rules": "^1"
    	},
    	"autoload": {
    		"psr-4": {
    			"WPDesk\\PluginBuilder\\": "src/"
    		},
    		"classmap": [
    			"src/Plugin/WithoutNamespace"
    		]
    	},
    	"extra": {
    		"text-domain": "wpdesk-wp-builder",
    		"translations-folder": "lang",
    		"po-files": {
    			"pl_PL": "pl_PL.po"
    		}
    	},
    	"scripts": {
    		"phpcs": "phpcs",
    		"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"
    	},
    	"archive": {
    		"exclude": ["/tests"]
    	},
    	"config": {
    		"allow-plugins": {
    			"dealerdirect/phpcodesniffer-composer-installer": true,
    			"phpstan/extension-installer": true
    		}
    	}
    }