Skip to content
Snippets Groups Projects
Select Git revision
  • a6419e8bfd52bd15dc479525e73c15a779f39e9d
  • main default protected
  • 1.2.1
  • 1.2.0
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.0
10 results

.gitignore

Blame
  • composer.json 1.33 KiB
    {
        "name": "wpdesk/wp-notice",
        "description": "Library for displaying Wordpress notices.",
        "license": "MIT",
        "keywords": ["wordpress", "notice", "admin"],
        "homepage": "https://gitlab.com/wpdesk/wp-notice",
        "minimum-stability": "stable",
        "authors": [
            {
                "name": "grola",
                "email": "grola@wpdesk.net"
            }
        ],
        "require": {
            "php": ">=5.5",
            "wpdesk/wp-basic-requirements": "^2.0",
    	    "wpdesk/wp-builder": "1.0"
    	},
        "require-dev": {
            "phpunit/phpunit": "<7",
            "wp-coding-standards/wpcs": "^0.14.1",
            "squizlabs/php_codesniffer": "^3.0.2",
            "mockery/mockery": "*",
            "10up/wp_mock": "*",
            "wimg/php-compatibility": "^8"
        },
        "autoload": {
    		"psr-4": {"WPDesk\\Notice\\": "src/WPDesk/Notice/"},
            "files": ["src/WPDesk/functions.php"]
        },
        "autoload-dev": {
        },
        "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"
        }
    }