Skip to content
Snippets Groups Projects
Select Git revision
  • 4303e4c20a0de30606ca19790cfacc775aeb8829
  • master default protected
  • feat/woo-template
  • organize-tests
  • feat/add-show-rendered-method
  • devel
  • 2.1.0
  • 2.0.0
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0
12 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 996 B
    {
    	"name": "wpdesk/wp-view",
    	"license": "MIT",
    	"authors": [
    		{
    			"name": "WP Desk",
    			"role": "Owner"
    		},
    		{
    			"name": "Krzysiek",
    			"email": "krzysiek@wpdesk.pl"
    		}
    	],
    	"require": {
    		"php": ">=7.0 | ^8"
    	},
    	"require-dev": {
    		"phpunit/phpunit": "<7",
    		"wpdesk/wp-code-sniffer": "^1",
    		"mockery/mockery": "*",
    		"10up/wp_mock": "*",
    		"wpdesk/phpstan-rules": "^1.1"
    	},
    	"autoload": {
    		"psr-4": {"WPDesk\\View\\": "src/"}
    	},
    	"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"
    	},
    	"config": {
    		"allow-plugins": {
    			"dealerdirect/phpcodesniffer-composer-installer": true,
    			"phpstan/extension-installer": true
    		}
    	}
    }