Skip to content
Snippets Groups Projects
Select Git revision
  • bbe69faa3a4f915e801643041b02bb6c5644917d
  • main default protected
  • devel
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1007 B
    {
        "name": "wpdesk/wp-migrations",
        "type": "library",
    	"description": "Doctrine Migrations clone suited for WordPress purposes.",
    	"license": "MIT",
        "authors": [
            {
                "name": "Bart Jaskulski",
                "email": "bartek.jaskulski@wpdesk.net"
            }
        ],
        "require": {
    		"php": "^7.1|^8",
            "ext-json": "*",
            "psr/log": "^1"
        },
        "autoload": {
            "psr-4": {
                "WPDesk\\Migrations\\": "src"
            }
        },
    	"autoload-dev": {
    		"psr-4": {
    			"WPDesk\\Migrations\\Tests\\": "tests"
    		},
    		"classmap": [
    			"tests/stubs"
    		]
    	},
        "require-dev": {
            "szepeviktor/phpstan-wordpress": "^1.1",
    		"wp-coding-standards/wpcs": "^2"
        },
    	"scripts": {
    		"test:phpstan": "./tools/phpstan --configuration=phpstan.neon.dist --memory-limit=-1 analyze",
    		"test:phpcs": "./tools/phpcs",
    		"test:phpunit": "./tools/phpunit --bootstrap tests/bootstrap.php tests",
    		"test": [
    			"@test:phpcs",
    			"@test:phpstan",
    			"@test:phpunit"
    		]
    	}
    }