Skip to content
Snippets Groups Projects
Select Git revision
  • 0e1cb196ced822fa390fe15ca293feac0ceeeda7
  • master default protected
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.3.0-beta1
  • 1.2.1
  • 1.2.0
  • 1.2.0-beta5
  • 1.2.0-beta4
  • 1.2.0-beta3
  • 1.2.0-beta2
  • 1.2.0-beta1
  • 1.1.0
  • 1.0.0
21 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.54 KiB
    {
        "name": "wpdesk/wp-wpdesk-rating-petition",
        "license": "MIT",
        "authors": [
            {
                "name": "Krzysiek",
                "email": "krzysiek@wpdesk.pl"
            }
        ],
        "require": {
            "php": ">=7.0",
            "wpdesk/wp-notice": "^3.1",
            "wpdesk/wp-plugin-flow-common": "^1"
        },
        "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\\RepositoryRating\\": "src/"
            }
        },
        "autoload-dev": {
            "classmap": ["tests/"]
        },
        "extra": {
            "text-domain": "wp-wpdesk-rating-petition",
            "translations-folder": "lang",
            "po-files": {
                "pl_PL": "pl_PL.po",
                "en_AU": "en_AU.po",
                "en_CA": "en_CA.po",
                "en_GB": "en_GB.po",
                "de_DE": "de_DE.po"
            }
        },
        "scripts": {
            "test": "echo composer is alive",
            "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",
    
    	    "docs": "apigen generate"
        }
    }