Skip to content
Snippets Groups Projects
Select Git revision
  • 20dcd270c0d0b43e8cb5c280ca4e5acbdd6e36c6
  • main default protected
  • revert-ffead0bd
  • feature/init
  • 1.1.8
  • 1.1.7
  • 1.1.6
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.2
  • 1.0.2-beta3
  • 1.0.2-beta2
  • 1.0.2-beta1
  • 1.0.1
  • 1.0.1-beta4
  • 1.0.1-beta3
  • 1.0.1-beta2
  • 1.0.1-beta1
  • 1.0.0
  • 1.0.0-beta6
24 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.12 KiB
    {
      "name": "wpdesk/wp-wpdesk-activation-reminder",
      "type": "composer-plugin",
      "authors": [
        {
          "name": "Krzysiek",
          "email": "krzysiek@wpdesk.pl"
        },
        {
          "name": "Grzegorz",
          "email": "grzegorz@wpdesk.net"
        }
      ],
      "require": {
        "php": ">=7.0",
        "composer-plugin-api": "^1|^2"
      },
      "require-dev": {
        "composer/composer": "^1|^2",
        "10up/wp_mock": "0.3",
        "phpunit/phpunit": "<7"
      },
      "autoload": {
        "psr-4": {
          "WPDesk\\": "src/"
        }
      },
      "autoload-dev": {
      },
      "extra": {
        "class": "WPDesk\\ActivationReminder\\Composer\\Plugin",
        "text-domain": "wp-wpdesk-activation-reminder",
        "translations-folder": "lang",
        "po-files": {
          "pl_PL": "pl_PL.po"
        }
      },
      "scripts": {
        "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"
      }
    }