Skip to content
Snippets Groups Projects
Select Git revision
  • 08c935a9d745d45c02c0d5fe8378c83a4a28a01f
  • main default protected
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 1.0.0-beta7
  • 1.0.0-beta6
  • 1.0.0-beta4
  • 1.0.0-beta3
  • 1.0.0-beta2
  • 1.0.0-beta1
11 results

composer.json

Blame
  • This project manages its dependencies using Composer. Learn more
    composer.json 1.24 KiB
    {
        "name": "octolize/shopify-codeception",
        "description": "Shopify Codeception",
        "license": "MIT",
        "keywords": ["shopify", "codeception"],
        "authors": [
            {
                "name": "grola",
                "email": "grola@octolize.com"
            }
        ],
        "require": {
            "php": ">=8.0",
            "psr/log": "^1.1",
            "codeception/module-webdriver": "^4.0",
            "octolize/chrome-profile-for-shopify": "^1.0"
        },
        "require-dev": {
        },
        "autoload": {
    		"psr-4": {
                "Octolize\\Shopify\\Codeception\\": "src"
            }
        },
        "autoload-dev": {
            "classmap": ["tests/unit"]
        },
        "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"
        },
        "repositories": {
            "octolize": {
                "type": "composer",
                "url": "https://gitlab.wpdesk.dev/api/v4/group/wpdesk/-/packages/composer/"
            }
        }
    }