Skip to content
Snippets Groups Projects
Select Git revision
  • 079af378eda8289b52210aa774e2ba9b7f999442
  • main default protected
  • v0.10
  • 0.10.6
  • 0.10.5
  • 0.10.4
  • 0.10.3
  • 0.10.2
  • 0.10.1
  • 0.10.0
  • 0.9.1
  • 0.9.0
12 results

.gitattributes

Blame
  • composer.json 1.32 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/codeception": "^5.0",
            "codeception/module-cli": "^2.0",
            "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/"
            }
        }
    }